Changeset 136 in xtideuniversalbios


Ignore:
Timestamp:
Mar 13, 2011, 6:37:27 PM (13 years ago)
Author:
aitotat
google:author:
aitotat
Message:

Changes to Configurator v2:

  • Menu selection timeout is now specified in timer ticks.
  • File was not closed when saving changes.
Location:
trunk/XTIDE_Universal_BIOS_Configurator_v2
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/XTIDE_Universal_BIOS_Configurator_v2/Inc/Help/Bootmenu_Timeout.txt

    r68 r136  
    1 Boot Menu selection timeout in seconds. When time goes to zero, currently selected drive will be booted automatically. Timeout can be disabled by setting this to 0.
     1Boot Menu selection timeout in BIOS timer ticks (1 second = 18.2 ticks). When time goes to zero, currently selected drive will be booted automatically. Timeout can be disabled by setting this to 0.
  • trunk/XTIDE_Universal_BIOS_Configurator_v2/Src/BiosFile.asm

    r118 r136  
    2626    mov     ax, FLG_CFGVARS_FILELOADED
    2727    call    Buffers_NewBiosWithSizeInDXCXandSourceInAXhasBeenLoadedForConfiguration
     28    call    FileIO_CloseUsingHandleFromBX
    2829    call    DisplayFileLoadedSuccesfully
    29     call    FileIO_CloseUsingHandleFromBX
    3030    jmp     SHORT .Return
    3131
     
    166166    jc      SHORT .DisplayErrorMessage
    167167
     168    call    FileIO_CloseUsingHandleFromBX
    168169    call    Buffers_ClearUnsavedChanges
    169170    call    DisplayFileSavedSuccesfully
  • trunk/XTIDE_Universal_BIOS_Configurator_v2/Src/Menupages/BootMenuSettingsMenu.asm

    r114 r136  
    6161    at  MENUITEM.szQuickInfo,       dw  g_szNfoBootTimeout
    6262    at  MENUITEM.szHelp,            dw  g_szHelpBootTimeout
    63     at  MENUITEM.bFlags,            db  FLG_MENUITEM_VISIBLE | FLG_MENUITEM_BYTEVALUE
     63    at  MENUITEM.bFlags,            db  FLG_MENUITEM_VISIBLE
    6464    at  MENUITEM.bType,             db  TYPE_MENUITEM_UNSIGNED
    65     at  MENUITEM.itemValue + ITEM_VALUE.wRomvarsValueOffset,        dw  ROMVARS.bBootDelay
     65    at  MENUITEM.itemValue + ITEM_VALUE.wRomvarsValueOffset,        dw  ROMVARS.wBootTimeout
    6666    at  MENUITEM.itemValue + ITEM_VALUE.szDialogTitle,              dw  g_szDlgBootTimeout
    6767    at  MENUITEM.itemValue + ITEM_VALUE.wMinValue,                  dw  0
    68     at  MENUITEM.itemValue + ITEM_VALUE.wMaxValue,                  dw  60
     68    at  MENUITEM.itemValue + ITEM_VALUE.wMaxValue,                  dw  1092
    6969iend
    7070
  • trunk/XTIDE_Universal_BIOS_Configurator_v2/Src/Strings.asm

    r133 r136  
    180180g_szItemBootSwap:       db  "Swap boot drive numbers",NULL
    181181
    182 g_szDlgBootTimeout:     db  "Enter Boot Menu selection timeout in seconds (1...60, 0 disables timeout).",NULL
     182g_szDlgBootTimeout:     db  "Enter Boot Menu selection timeout in BIOS timer ticks (1...1092, 0 disables timeout).",NULL
    183183g_szDlgBootDrive:       db  "Enter default drive number (0xh for Floppy Drives, 8xh for Hard Disks, FFh for ROM boot).",NULL
    184184g_szDlgBootFloppyDrvs:  db  "Enter number of Floppy Drives to display on boot menu.",NULL
    185185g_szDlgBootSwap:        db  "Enable drive number translation?",NULL
    186186
    187 g_szNfoBootTimeout:     db  "Menu item selection timeout in seconds.",NULL
     187g_szNfoBootTimeout:     db  "Menu item selection timeout in BIOS timer ticks.",NULL
    188188g_szNfoBootDrive:       db  "Default drive on boot menu.",NULL
    189189g_szNfoBootFloppyDrvs:  db  "Number of Floppy Drives to display on boot menu.",NULL
Note: See TracChangeset for help on using the changeset viewer.