Changeset 596 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS/Src/Menus
- Timestamp:
- Jul 10, 2018, 1:20:11 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/XTIDE_Universal_BIOS/Src/Menus/HotkeyBar.asm
r593 r596 78 78 ; Clear CH if floppy drive is selected for boot 79 79 mov ch, [es:BOOTVARS.hotkeyVars+HOTKEYVARS.bFlags] 80 ;and ch, FLG_HOTKEY_HD_FIRST ; Needed if more flags are added80 ; and ch, FLG_HOTKEY_HD_FIRST ; Needed if more flags are added 81 81 call FormatDriveHotkeyString 82 82 … … 96 96 call BootVars_GetLetterForFirstHardDriveToAX 97 97 mov ah, ANGLE_QUOTE_RIGHT 98 mov cx, [es:BOOTVARS.hotkeyVars+HOTKEYVARS. bHddLetter] ; Letter to CL, flags to CH99 ;and ch, FLG_HOTKEY_HD_FIRST ; Needed if more flags are added98 mov cx, [es:BOOTVARS.hotkeyVars+HOTKEYVARS.wHddLetterAndFlags] ; Letter to CL, flags to CH 99 ; and ch, FLG_HOTKEY_HD_FIRST ; Needed if more flags are added 100 100 xor ch, FLG_HOTKEY_HD_FIRST ; Clear CH if HD is selected for boot, set otherwise 101 101 mov di, g_szHDD … … 234 234 235 235 GetSelectedHotkeyDescriptionAttributeToDX: 236 mov si, ATTRIBUTE_CHARS.cH urryTimeout; Selected hotkey236 mov si, ATTRIBUTE_CHARS.cHighlightedItem ; Selected hotkey 237 237 je SHORT GetDescriptionAttributeToDX ; From compare with bScancode above and from FormatDriveHotkeyString 238 238 239 239 GetNonSelectedHotkeyDescriptionAttributeToDX: 240 mov si, ATTRIBUTE_CHARS.c HighlightedItem; Unselected hotkey240 mov si, ATTRIBUTE_CHARS.cItem ; Unselected hotkey 241 241 242 242 ; Display Library should not be called like this
Note:
See TracChangeset
for help on using the changeset viewer.