mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2025-01-17 22:55:38 +00:00
Can now specify --vsync true or --vsync false in addition to 1/0.
This commit is contained in:
parent
396cf1bde9
commit
c48f1784c5
|
@ -59,7 +59,8 @@ bool parseArgs(int argc, char* argv[], unsigned int* width, unsigned int* height
|
||||||
Settings::getInstance()->setBool("Windowed", true);
|
Settings::getInstance()->setBool("Windowed", true);
|
||||||
}else if(strcmp(argv[i], "--vsync") == 0)
|
}else if(strcmp(argv[i], "--vsync") == 0)
|
||||||
{
|
{
|
||||||
Settings::getInstance()->setBool("VSync", atoi(argv[i + 1]));
|
bool vsync = (strcmp(argv[i + 1], "true") == 0 || strcmp(argv[i + 1], "1") == 0) ? true : false;
|
||||||
|
Settings::getInstance()->setBool("VSync", vsync);
|
||||||
i++; // skip vsync value
|
i++; // skip vsync value
|
||||||
}else if(strcmp(argv[i], "--scrape") == 0)
|
}else if(strcmp(argv[i], "--scrape") == 0)
|
||||||
{
|
{
|
||||||
|
@ -79,7 +80,7 @@ bool parseArgs(int argc, char* argv[], unsigned int* width, unsigned int* height
|
||||||
"--debug even more logging\n"
|
"--debug even more logging\n"
|
||||||
"--scrape scrape using command line interface\n"
|
"--scrape scrape using command line interface\n"
|
||||||
"--windowed not fullscreen, should be used with --resolution\n"
|
"--windowed not fullscreen, should be used with --resolution\n"
|
||||||
"--vsync [0/1] turn vsync on or off (default is on)\n"
|
"--vsync [1/true or 0/false] turn vsync on or off (default is on)\n"
|
||||||
"--help, -h summon a sentient, angry tuba\n\n"
|
"--help, -h summon a sentient, angry tuba\n\n"
|
||||||
"More information available in README.md.\n";
|
"More information available in README.md.\n";
|
||||||
return false; //exit after printing help
|
return false; //exit after printing help
|
||||||
|
|
Loading…
Reference in a new issue