Fix fullscreen.

This commit is contained in:
Themaister 2010-12-31 14:20:49 +01:00
parent faa7f10530
commit 9554b01df1
3 changed files with 3 additions and 1 deletions

View File

@ -53,7 +53,7 @@ static const float xscale = 3.0; // Real x res = 296 * xscale
static const float yscale = 3.0; // Real y res = 224 * yscale
// Fullscreen
static bool fullscreen = false; // To start in Fullscreen or not
#define START_FULLSCREEN false; // To start in Fullscreen or not
static const unsigned fullscreen_x = 1280;
static const unsigned fullscreen_y = 720;

View File

@ -33,5 +33,6 @@
extern bool verbose;
extern SRC_STATE *source;
extern bool fullscreen;
#endif

View File

@ -199,6 +199,7 @@ static void print_help(void)
puts("\t-v/--verbose: Verbose logging");
}
bool fullscreen = START_FULLSCREEN;
static FILE* rom_file = NULL;
static char savefile_name_srm[256] = {0};
bool verbose = false;