Removed off by 1 line fix.

This commit is contained in:
jbo_85
2006-02-15 01:55:56 +00:00
parent 241dda2e00
commit 8ffaca432a
3 changed files with 1 additions and 9 deletions

View File

@@ -1002,7 +1002,6 @@ NEWSYM virqnodisable, db 0
NEWSYM numspcvblleft, dd 0
NEWSYM spc700idle, dd 0
NEWSYM IRQHack, dw 0
NEWSYM Offby1line, db 0
NEWSYM CacheCheckSkip, db 0
NEWSYM HIRQSkip, db 0
NEWSYM ClearScreenSkip, db 0

View File

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

View File

@@ -28,7 +28,6 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include <unistd.h>
#define DIR_SLASH '\\'
#ifdef __WIN32__
#include <windows.h>
@@ -45,7 +44,7 @@ extern unsigned char KitchenSync, Force60hz;
extern unsigned char Palette0, pl1contrl, pl2contrl, MMXSupport, Force8b, ForcePal, GUIClick,
MouseDis, MusicRelVol, ScreenScale, SoundQuality, StereoSound, V8Mode,
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,
showallext, autoloadstate, smallscreenon, autoloadmovie, ZMVZClose,
ZMVRawDump, HacksDisable;
@@ -81,7 +80,6 @@ static void display_help()
#endif
put_line(" -7 Disable SPC700 speedhack");
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(" -cc Enable small screen (when available)");
#ifdef __MSDOS__
@@ -331,10 +329,6 @@ static void handle_params(int argc, char *argv[])
Force8b = 1;
break;
case '9': //Off by 1 line
OffBy1Line = 1;
break;
case 'c': //Enable full screen (when available)
ScreenScale = 1;
break;