aboutsummaryrefslogtreecommitdiff
path: root/src/Config.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Config.cpp')
-rw-r--r--src/Config.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/Config.cpp b/src/Config.cpp
index 4182dba..42f18c7 100644
--- a/src/Config.cpp
+++ b/src/Config.cpp
@@ -28,12 +28,20 @@ namespace Config
const char* kConfigFile = "melonDS.ini";
+int _3DRenderer;
int Threaded3D;
+int GL_ScaleFactor;
+int GL_Antialias;
+
ConfigEntry ConfigFile[] =
{
+ {"3DRenderer", 0, &_3DRenderer, 1, NULL, 0},
{"Threaded3D", 0, &Threaded3D, 1, NULL, 0},
+ {"GL_ScaleFactor", 0, &GL_ScaleFactor, 1, NULL, 0},
+ {"GL_Antialias", 0, &GL_Antialias, 0, NULL, 0},
+
{"", -1, NULL, 0, NULL, 0}
};