Added force NTSC/PAL option to GUI

This commit is contained in:
pagefault
2001-08-11 21:40:19 +00:00
parent 930a947d05
commit dec0eaa0bf
6 changed files with 43 additions and 11 deletions

View File

@@ -872,7 +872,7 @@ GUIOptionKeys:
jne .nogameclock
xor byte[TimerEnable],1
.nogameclock
cmp dh,'T'
cmp dh,'G'
jne .nofastforward
xor byte[FastFwdToggle],1
.nofastforward
@@ -907,6 +907,14 @@ GUIOptionKeys:
call guimustrestartmsg
.noalttimer
%endif
cmp dh,'T'
jne .noforcentsc
GUIkeystoggleoptn byte[ForceROMTiming],1
.noforcentsc
cmp dh,'P'
jne .noforcepal
GUIkeystoggleoptn byte[ForceROMTiming],2
.noforcepal
ret
GUIGUIOptnsKeys: