mirror of
https://github.com/libretro/RetroArch
synced 2025-02-22 12:40:09 +00:00
Fix fullscreen.
This commit is contained in:
parent
faa7f10530
commit
9554b01df1
@ -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
|
static const float yscale = 3.0; // Real y res = 224 * yscale
|
||||||
|
|
||||||
// Fullscreen
|
// 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_x = 1280;
|
||||||
static const unsigned fullscreen_y = 720;
|
static const unsigned fullscreen_y = 720;
|
||||||
|
|
||||||
|
@ -33,5 +33,6 @@
|
|||||||
|
|
||||||
extern bool verbose;
|
extern bool verbose;
|
||||||
extern SRC_STATE *source;
|
extern SRC_STATE *source;
|
||||||
|
extern bool fullscreen;
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
1
ssnes.c
1
ssnes.c
@ -199,6 +199,7 @@ static void print_help(void)
|
|||||||
puts("\t-v/--verbose: Verbose logging");
|
puts("\t-v/--verbose: Verbose logging");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool fullscreen = START_FULLSCREEN;
|
||||||
static FILE* rom_file = NULL;
|
static FILE* rom_file = NULL;
|
||||||
static char savefile_name_srm[256] = {0};
|
static char savefile_name_srm[256] = {0};
|
||||||
bool verbose = false;
|
bool verbose = false;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user