From 8ddbaac58f20fd6427d63af3b050dc53a8be959a Mon Sep 17 00:00:00 2001 From: Chips-fr Date: Sat, 23 May 2015 21:59:32 +0000 Subject: [PATCH] switch to 4/3 by default on Rpi --- src/cfgfile.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/cfgfile.cpp b/src/cfgfile.cpp index 2367789e..458e20b1 100644 --- a/src/cfgfile.cpp +++ b/src/cfgfile.cpp @@ -1866,7 +1866,11 @@ void default_prefs (struct uae_prefs *p, int type) p->gfx_size_fs.height = 480; p->gfx_vsync = 1; p->gfx_lores = 1; +#ifdef RASPBERRY + p->gfx_correct_aspect = 1; +#else p->gfx_correct_aspect = 0; +#endif p->gfx_xcenter = 0; p->gfx_ycenter = 0;