Changeset 293 in xtideuniversalbios for trunk/Assembly_Library/Src/Menu/Dialog
- Timestamp:
- Mar 4, 2012, 1:33:52 AM (13 years ago)
- google:author:
- krille_n_@hotmail.com
- Location:
- trunk/Assembly_Library/Src/Menu/Dialog
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Assembly_Library/Src/Menu/Dialog/DialogFile.asm
r181 r293 173 173 174 174 lds si, [bp+DIALOG.fpDialogIO] 175 eMOVZX cx, BYTE[si+FILE_DIALOG_IO.bFileAttributes]175 eMOVZX cx, [si+FILE_DIALOG_IO.bFileAttributes] 176 176 lds si, [si+FILE_DIALOG_IO.fpFileFilterString] 177 177 call Directory_UpdateDTAForFirstMatchForDSSIwithAttributesInCX … … 518 518 xor ax, ax 519 519 stosb ; Terminate with NULL 520 jmp SHORT CloseFileDialogAfterSuccessful lSelection520 jmp SHORT CloseFileDialogAfterSuccessfulSelection 521 521 522 522 ;-------------------------------------------------------------------- … … 617 617 test al, al ; User cancellation? 618 618 jnz SHORT ReturnWithoutHandlingKeystroke 619 jmp CloseFileDialogAfterSuccessful lSelection619 jmp CloseFileDialogAfterSuccessfulSelection 620 620 621 621 ALIGN JUMP_ALIGN … … 646 646 test al, FLG_FILEDIALOG_DIRECTORY 647 647 jz SHORT ReturnWithoutHandlingKeystroke 648 ; Fall to CloseFileDialogAfterSuccessful lSelection649 650 ;-------------------------------------------------------------------- 651 ; CloseFileDialogAfterSuccessful lSelection648 ; Fall to CloseFileDialogAfterSuccessfulSelection 649 650 ;-------------------------------------------------------------------- 651 ; CloseFileDialogAfterSuccessfulSelection 652 652 ; Parameters: 653 653 ; SS:BP: Ptr to DIALOG … … 658 658 ;-------------------------------------------------------------------- 659 659 ALIGN JUMP_ALIGN 660 CloseFileDialogAfterSuccessful lSelection:660 CloseFileDialogAfterSuccessfulSelection: 661 661 lds di, [bp+DIALOG.fpDialogIO] 662 662 mov BYTE [di+FILE_DIALOG_IO.bUserCancellation], FALSE -
trunk/Assembly_Library/Src/Menu/Dialog/DialogWord.asm
r58 r293 85 85 GetWordFromUser: 86 86 lds si, [bp+DIALOG.fpDialogIO] 87 eMOVZX bx, BYTE[si+WORD_DIALOG_IO.bNumericBase]87 eMOVZX bx, [si+WORD_DIALOG_IO.bNumericBase] 88 88 ALIGN JUMP_ALIGN 89 89 .GetUserInputIntilValidOrCancelled:
Note:
See TracChangeset
for help on using the changeset viewer.