Added a command line option to force 60hz fullscreen, use the option -6 to enable mode

This commit is contained in:
pagefault
2003-12-21 07:52:25 +00:00
parent 1482ffd29a
commit 1bf34d54ec
2 changed files with 13 additions and 3 deletions

View File

@@ -31,6 +31,7 @@ extern void ConvertJoyMap2(void);
extern void displayparams(void);
extern void makeextension(void);
extern unsigned char KitchenSync;
extern unsigned char Force60hz;
int pccmdline(void);
@@ -677,6 +678,11 @@ int pccmdline(void)
KitchenSync=1;
break;
}
case '6':
{
Force60hz=1;
break;
}
case '?':
{
return 9;