GLES2N64: Added option to strecth the video instead of aspect ration correct
authorptitSeb <sebastien.chev@gmail.com>
Sun, 20 Oct 2013 21:44:32 +0000 (23:44 +0200)
committerptitSeb <sebastien.chev@gmail.com>
Sun, 20 Oct 2013 21:44:32 +0000 (23:44 +0200)
source/gles2n64/src/Config.cpp [changed mode: 0644->0755]
source/gles2n64/src/Config.h [changed mode: 0644->0755]

old mode 100644 (file)
new mode 100755 (executable)
index 4d91c11..469f350
@@ -76,6 +76,7 @@ Option configOptions[] =
     {"video force", &config.video.force, 0},
     {"video width", &config.video.width, 320},
     {"video height", &config.video.height, 240},
+    {"video stretch", &config.stretchVideo, 0},
     {"", NULL, 0},
 
     {"#Render Settings:", NULL, 0},
@@ -120,7 +121,7 @@ Option configOptions[] =
     {"hack banjo tooie", &config.hackBanjoTooie, 0},
     {"hack zelda", &config.hackZelda, 0},
     {"hack alpha", &config.hackAlpha, 0},
-    {"hack z", &config.zHack, 0},
+    {"hack z", &config.zHack, 0}
 
 };
 
old mode 100644 (file)
new mode 100755 (executable)
index 57fcf3f..6c7de47
@@ -66,7 +66,7 @@ struct Config
     int     hackZelda;
     int     hackAlpha;
 
-    bool    stretchVideo;
+    int        stretchVideo;
     bool    romPAL;    //is the rom PAL
     char    romName[21];
 };