From e3c47c933a315152ec3f3e574e5c16bfad8a1011 Mon Sep 17 00:00:00 2001 From: ptitSeb Date: Sun, 20 Oct 2013 23:44:32 +0200 Subject: [PATCH] GLES2N64: Added option to strecth the video instead of aspect ration correct --- source/gles2n64/src/Config.cpp | 3 ++- source/gles2n64/src/Config.h | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) mode change 100644 => 100755 source/gles2n64/src/Config.cpp mode change 100644 => 100755 source/gles2n64/src/Config.h diff --git a/source/gles2n64/src/Config.cpp b/source/gles2n64/src/Config.cpp old mode 100644 new mode 100755 index 4d91c11..469f350 --- a/source/gles2n64/src/Config.cpp +++ b/source/gles2n64/src/Config.cpp @@ -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} }; diff --git a/source/gles2n64/src/Config.h b/source/gles2n64/src/Config.h old mode 100644 new mode 100755 index 57fcf3f..6c7de47 --- a/source/gles2n64/src/Config.h +++ b/source/gles2n64/src/Config.h @@ -66,7 +66,7 @@ struct Config int hackZelda; int hackAlpha; - bool stretchVideo; + int stretchVideo; bool romPAL; //is the rom PAL char romName[21]; }; -- 2.39.2