Added "+ Gamma" and "- Gamma" hotkeys to the Misc Keys menu

This commit is contained in:
ipher
2006-02-10 01:05:26 +00:00
parent 4444cce49f
commit 62bff1d59c
3 changed files with 13 additions and 5 deletions

View File

@@ -142,7 +142,7 @@ EXTSYM BilinearFilter,lastcursres,OldVolume,prevloadl,prevloadfname,OldWinPos
EXTSYM GUIwinposy2,GUIwinposx2,AllowMultipleInst,Surround,SoundBufEn,SPCDisable EXTSYM GUIwinposy2,GUIwinposx2,AllowMultipleInst,Surround,SoundBufEn,SPCDisable
EXTSYM GUIEnableTransp,FilteredGUI,MouseWheel,TrapMouseCursor,AlwaysOnTop EXTSYM GUIEnableTransp,FilteredGUI,MouseWheel,TrapMouseCursor,AlwaysOnTop
EXTSYM pl1p209,pl1p209b,SaveMainWindowPos,FastFwdToggle,SidewinderFix,RaisePitch EXTSYM pl1p209,pl1p209b,SaveMainWindowPos,FastFwdToggle,SidewinderFix,RaisePitch
EXTSYM KeyDisplayBatt,PauseFocusChange EXTSYM KeyDisplayBatt,PauseFocusChange,KeyIncreaseGamma,KeyDecreaseGamma
%ifdef __UNIXSDL__ %ifdef __UNIXSDL__
EXTSYM numlockptr EXTSYM numlockptr

View File

@@ -2801,8 +2801,10 @@ DisplayGameOptnsClick:
DGOptnsProcBox 78,110,[KeyResetAll] DGOptnsProcBox 78,110,[KeyResetAll]
DGOptnsProcBox 78,120,[KeyExtraEnab] DGOptnsProcBox 78,120,[KeyExtraEnab]
DGOptnsProcBox 78,130,[KeyDisplayFPS] DGOptnsProcBox 78,130,[KeyDisplayFPS]
DGOptnsProcBox 78,140,[KeyIncreaseGamma]
DGOptnsProcBox 78,150,[KeyDecreaseGamma]
%ifndef __MSDOS__ %ifndef __MSDOS__
DGOptnsProcBox 78,140,[KeyDisplayBatt] DGOptnsProcBox 78,160,[KeyDisplayBatt]
%endif %endif
DGOptnsProcBox 191,100,[KeyNewGfxSwt] DGOptnsProcBox 191,100,[KeyNewGfxSwt]

View File

@@ -2751,8 +2751,10 @@ DisplayGameOptns: ; Misc Key Window
GUIDisplayText 9,9,112,GUIGameOptnsTextD1b GUIDisplayText 9,9,112,GUIGameOptnsTextD1b
GUIDisplayText 9,9,122,GUIGameOptnsTextD1c GUIDisplayText 9,9,122,GUIGameOptnsTextD1c
GUIDisplayText 9,9,132,GUIGameOptnsTextD1d GUIDisplayText 9,9,132,GUIGameOptnsTextD1d
%ifndef __MSDOS__
GUIDisplayText 9,9,142,GUIGameOptnsTextD1e GUIDisplayText 9,9,142,GUIGameOptnsTextD1e
GUIDisplayText 9,9,152,GUIGameOptnsTextD1f
%ifndef __MSDOS__
GUIDisplayText 9,9,162,GUIGameOptnsTextD1g
%endif %endif
GUIDisplayTextY 9,119,93,GUIGameOptnsTextD2 GUIDisplayTextY 9,119,93,GUIGameOptnsTextD2
@@ -2790,8 +2792,10 @@ DisplayGameOptns: ; Misc Key Window
DDrawBox 9,77,109,[KeyResetAll] DDrawBox 9,77,109,[KeyResetAll]
DDrawBox 9,77,119,[KeyExtraEnab] DDrawBox 9,77,119,[KeyExtraEnab]
DDrawBox 9,77,129,[KeyDisplayFPS] DDrawBox 9,77,129,[KeyDisplayFPS]
DDrawBox 9,77,139,[KeyIncreaseGamma]
DDrawBox 9,77,149,[KeyDecreaseGamma]
%ifndef __MSDOS__ %ifndef __MSDOS__
DDrawBox 9,77,139,[KeyDisplayBatt] DDrawBox 9,77,159,[KeyDisplayBatt]
%endif %endif
DDrawBox 9,190,99,[KeyNewGfxSwt] DDrawBox 9,190,99,[KeyNewGfxSwt]
@@ -2829,7 +2833,9 @@ GUIGameOptnsTextD1a db 'USE PL12/34',0
GUIGameOptnsTextD1b db 'CLRSWITCHES',0 GUIGameOptnsTextD1b db 'CLRSWITCHES',0
GUIGameOptnsTextD1c db 'EXTRADEVICE',0 GUIGameOptnsTextD1c db 'EXTRADEVICE',0
GUIGameOptnsTextD1d db 'DISPLAY FPS',0 GUIGameOptnsTextD1d db 'DISPLAY FPS',0
GUIGameOptnsTextD1e db 'BATT POWER',0 GUIGameOptnsTextD1e db '+ GAMMA',0
GUIGameOptnsTextD1f db '- GAMMA',0
GUIGameOptnsTextD1g db 'BATT POWER',0
GUIGameOptnsTextD2 db 'GFX TOGGLES :',0 GUIGameOptnsTextD2 db 'GFX TOGGLES :',0
GUIGameOptnsTextD2a db 'NEW GFX ENG',0 GUIGameOptnsTextD2a db 'NEW GFX ENG',0