Disable openGL4 by default

This commit is contained in:
Struma 2020-02-29 21:31:04 -05:00 committed by Roza
parent fc2e10d124
commit 1fd2e65cf4
2 changed files with 3 additions and 3 deletions

View file

@ -30,9 +30,9 @@
// + Intel HD Graphics 4000+
//
// If disabled, OpenGL 3.3 is used instead.
// (default: enabled)
// (default: disabled)
//
// "openGL4": true,
// "openGL4": false,
// Create a debug context and log

View file

@ -50,7 +50,7 @@ Config::Config() {}
void Config::read(int argc, char *argv[]) {
OFMutableDictionary *opts = @{
@"rgssVersion" : @0,
@"openGL4" : @true,
@"openGL4" : @false,
@"debugMode" : @false,
@"printFPS" : @false,
@"winResizable" : @true,