Unused CL param dropped and cleanup.

This commit is contained in:
grinvader
2006-02-26 17:47:23 +00:00
parent 369baf83c6
commit a81e719e0d
2 changed files with 6 additions and 14 deletions

View File

@@ -134,7 +134,6 @@ unsigned char finterleave = 0;
unsigned char DSPDisable = 0; // Disable DSP emulation unsigned char DSPDisable = 0; // Disable DSP emulation
unsigned char Palette0 = 0; unsigned char Palette0 = 0;
unsigned char DisplayS = 0; unsigned char DisplayS = 0;
unsigned char SPC700sh = 0;
unsigned char *spc7110romptr; unsigned char *spc7110romptr;
unsigned char MusicRelVol = 75; unsigned char MusicRelVol = 75;

View File

@@ -38,16 +38,14 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
void ImportDirectX(); void ImportDirectX();
extern unsigned char KitchenSync, Force60hz; extern unsigned char KitchenSync, Force60hz;
#endif #endif
extern unsigned char Palette0, pl1contrl, pl2contrl, MMXSupport, Force8b, ForcePal, GUIClick, extern unsigned char Palette0, pl1contrl, pl2contrl, MMXSupport, Force8b, V8Mode,
MouseDis, MusicRelVol, ScreenScale, SoundQuality, StereoSound, V8Mode, ForcePal, GUIClick, MouseDis, MusicRelVol, ScreenScale, SoundQuality,
antienab, cvidmode, debugdisble, debugger, enterpress, vsyncon, DisplayS, StereoSound, antienab, cvidmode, debugdisble, debugger, enterpress, vsyncon,
SnowOn, Triplebufen, SPC700sh, DSPDisable, frameskip, DisplayS, SnowOn, Triplebufen, DSPDisable, frameskip, gammalevel, guioff,
gammalevel, guioff, romtype, per2exec, scanlines, soundon, spcon, romtype, per2exec, scanlines, soundon, spcon, showallext, autoloadstate,
showallext, autoloadstate, smallscreenon, autoloadmovie, ZMVZClose, smallscreenon, autoloadmovie, ZMVZClose, ZMVRawDump, HacksDisable;
ZMVRawDump, HacksDisable;
extern char *STCart2, fname[]; extern char *STCart2, fname[];
@@ -78,7 +76,6 @@ static void display_help()
#ifdef __WIN32__ #ifdef __WIN32__
put_line(" -6 Force 60Hz refresh rate"); put_line(" -6 Force 60Hz refresh rate");
#endif #endif
put_line(" -7 Disable SPC700 speedhack");
put_line(" -8 Force 8-bit sound"); put_line(" -8 Force 8-bit sound");
put_line(" -c Enable full/wide screen (when available)"); put_line(" -c Enable full/wide screen (when available)");
put_line(" -cc Enable small screen (when available)"); put_line(" -cc Enable small screen (when available)");
@@ -321,10 +318,6 @@ static void handle_params(int argc, char *argv[])
break; break;
#endif #endif
case '7': //SPC700 speed hack disable
SPC700sh = 1;
break;
case '8': //Force 8-bit sound case '8': //Force 8-bit sound
Force8b = 1; Force8b = 1;
break; break;