Added command line fullscreen flag to the SDL port, closes #126

This commit is contained in:
Lior Halphon 2018-11-10 16:32:45 +02:00
parent a39b314378
commit bc48c9bc26
1 changed files with 19 additions and 1 deletions

View File

@ -488,14 +488,28 @@ static void save_configuration(void)
}
}
static bool get_arg_flag(const char *flag, int *argc, char **argv)
{
for (unsigned i = 1; i < *argc; i++) {
if (strcmp(argv[i], flag) == 0) {
(*argc)--;
argv[i] = argv[*argc];
return true;
}
}
return false;
}
int main(int argc, char **argv)
{
#define str(x) #x
#define xstr(x) str(x)
fprintf(stderr, "SameBoy v" xstr(VERSION) "\n");
bool fullscreen = get_arg_flag("--fullscreen", &argc, argv);
if (argc > 2) {
fprintf(stderr, "Usage: %s [rom]\n", argv[0]);
fprintf(stderr, "Usage: %s [--fullscreen] [rom]\n", argv[0]);
exit(1);
}
@ -515,6 +529,10 @@ int main(int argc, char **argv)
160 * 2, 144 * 2, SDL_WINDOW_OPENGL | SDL_WINDOW_RESIZABLE | SDL_WINDOW_ALLOW_HIGHDPI);
SDL_SetWindowMinimumSize(window, 160, 144);
if (fullscreen) {
SDL_SetWindowFullscreen(window, SDL_WINDOW_FULLSCREEN_DESKTOP);
}
SDL_GLContext gl_context = SDL_GL_CreateContext(window);
GLint major = 0, minor = 0;