Removed off by 1 line fix.
This commit is contained in:
@@ -1002,7 +1002,6 @@ NEWSYM virqnodisable, db 0
|
|||||||
NEWSYM numspcvblleft, dd 0
|
NEWSYM numspcvblleft, dd 0
|
||||||
NEWSYM spc700idle, dd 0
|
NEWSYM spc700idle, dd 0
|
||||||
NEWSYM IRQHack, dw 0
|
NEWSYM IRQHack, dw 0
|
||||||
NEWSYM Offby1line, db 0
|
|
||||||
NEWSYM CacheCheckSkip, db 0
|
NEWSYM CacheCheckSkip, db 0
|
||||||
NEWSYM HIRQSkip, db 0
|
NEWSYM HIRQSkip, db 0
|
||||||
NEWSYM ClearScreenSkip, db 0
|
NEWSYM ClearScreenSkip, db 0
|
||||||
|
|||||||
@@ -135,7 +135,6 @@ 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 SPC700sh = 0;
|
||||||
unsigned char OffBy1Line = 0;
|
|
||||||
unsigned char *spc7110romptr;
|
unsigned char *spc7110romptr;
|
||||||
|
|
||||||
unsigned char MusicRelVol = 75;
|
unsigned char MusicRelVol = 75;
|
||||||
|
|||||||
@@ -28,7 +28,6 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
#include <unistd.h>
|
|
||||||
#define DIR_SLASH '\\'
|
#define DIR_SLASH '\\'
|
||||||
#ifdef __WIN32__
|
#ifdef __WIN32__
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
@@ -45,7 +44,7 @@ extern unsigned char KitchenSync, Force60hz;
|
|||||||
extern unsigned char Palette0, pl1contrl, pl2contrl, MMXSupport, Force8b, ForcePal, GUIClick,
|
extern unsigned char Palette0, pl1contrl, pl2contrl, MMXSupport, Force8b, ForcePal, GUIClick,
|
||||||
MouseDis, MusicRelVol, ScreenScale, SoundQuality, StereoSound, V8Mode,
|
MouseDis, MusicRelVol, ScreenScale, SoundQuality, StereoSound, V8Mode,
|
||||||
antienab, cvidmode, debugdisble, debugger, enterpress, vsyncon, DisplayS,
|
antienab, cvidmode, debugdisble, debugger, enterpress, vsyncon, DisplayS,
|
||||||
SnowOn, Triplebufen, SPC700sh, OffBy1Line, DSPDisable, frameskip,
|
SnowOn, Triplebufen, SPC700sh, DSPDisable, frameskip,
|
||||||
gammalevel, guioff, romtype, per2exec, scanlines, soundon, spcon,
|
gammalevel, guioff, romtype, per2exec, scanlines, soundon, spcon,
|
||||||
showallext, autoloadstate, smallscreenon, autoloadmovie, ZMVZClose,
|
showallext, autoloadstate, smallscreenon, autoloadmovie, ZMVZClose,
|
||||||
ZMVRawDump, HacksDisable;
|
ZMVRawDump, HacksDisable;
|
||||||
@@ -81,7 +80,6 @@ static void display_help()
|
|||||||
#endif
|
#endif
|
||||||
put_line(" -7 Disable SPC700 speedhack");
|
put_line(" -7 Disable SPC700 speedhack");
|
||||||
put_line(" -8 Force 8-bit sound");
|
put_line(" -8 Force 8-bit sound");
|
||||||
put_line(" -9 Off by 1 line fix");
|
|
||||||
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)");
|
||||||
#ifdef __MSDOS__
|
#ifdef __MSDOS__
|
||||||
@@ -331,10 +329,6 @@ static void handle_params(int argc, char *argv[])
|
|||||||
Force8b = 1;
|
Force8b = 1;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case '9': //Off by 1 line
|
|
||||||
OffBy1Line = 1;
|
|
||||||
break;
|
|
||||||
|
|
||||||
case 'c': //Enable full screen (when available)
|
case 'c': //Enable full screen (when available)
|
||||||
ScreenScale = 1;
|
ScreenScale = 1;
|
||||||
break;
|
break;
|
||||||
|
|||||||
Reference in New Issue
Block a user