Changeset 596 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS_Configurator_v2/Src/Menupages
- Timestamp:
- Jul 10, 2018, 1:20:11 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/XTIDE_Universal_BIOS_Configurator_v2/Src/Menupages/MainMenu.asm
r592 r596 258 258 call BiosFile_LoadFileFromDSSItoRamBuffer 259 259 call LoadColorTheme 260 ; *FIXME* Will load themes even from unrecognized versions of the BIOS which isn't really a problem but still 'unexpected behaviour' and therefore a bug.261 260 call MainMenu_EnterMenuOrModifyItemVisibility 262 261 .CancelFileLoading: … … 270 269 call Buffers_SaveChangesIfFileLoaded 271 270 call EEPROM_LoadXtideUniversalBiosFromRomToRamBufferAndReturnSizeInDXCX 272 mov a x, FLG_CFGVARS_ROMLOADED273 call Buffers_NewBiosWithSizeInDXCXandSourceInA XhasBeenLoadedForConfiguration271 mov al, FLG_CFGVARS_ROMLOADED 272 call Buffers_NewBiosWithSizeInDXCXandSourceInALhasBeenLoadedForConfiguration 274 273 mov dx, g_szDlgMainLoadROM 275 274 call Dialogs_DisplayNotificationFromCSDX … … 297 296 ; Nothing 298 297 ; Corrupts registers: 299 ; AX, BX, DI, ES298 ; AX, BX, CX, SI, DI, ES 300 299 ;-------------------------------------------------------------------- 301 300 ALIGN JUMP_ALIGN 302 301 LoadColorTheme: 303 302 call Buffers_GetFileBufferToESDI 303 call Buffers_IsXtideUniversalBiosSignatureInESDI 304 jnz SHORT .Return 304 305 .FromROM: 305 306 mov ax, [es:ROMVARS.pColorTheme] 306 307 jmp ReadColorTheme 307 308 .Return: 309 ret 310
Note:
See TracChangeset
for help on using the changeset viewer.