From ab92e184cd139a3b79e245347d66b8a8c84f437f Mon Sep 17 00:00:00 2001 From: bwmott Date: Sun, 15 Dec 2002 05:13:19 +0000 Subject: [PATCH] Updated the default value for the "Display.Height" property from 38 to 34. Looks like this works better for games when the stella.pro file is missing. git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@160 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba --- stella/src/emucore/Console.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stella/src/emucore/Console.cxx b/stella/src/emucore/Console.cxx index c83ad0d7c..dc0ed9787 100644 --- a/stella/src/emucore/Console.cxx +++ b/stella/src/emucore/Console.cxx @@ -13,7 +13,7 @@ // See the file "license" for information on usage and redistribution of // this file, and for a DISCLAIMER OF ALL WARRANTIES. // -// $Id: Console.cxx,v 1.9 2002-12-15 04:40:55 bwmott Exp $ +// $Id: Console.cxx,v 1.10 2002-12-15 05:13:19 bwmott Exp $ //============================================================================ #include @@ -209,7 +209,7 @@ const Properties& Console::defaultProperties() ourDefaultProperties.set("Display.Format", "NTSC"); ourDefaultProperties.set("Display.XStart", "0"); ourDefaultProperties.set("Display.Width", "160"); - ourDefaultProperties.set("Display.YStart", "38"); + ourDefaultProperties.set("Display.YStart", "34"); ourDefaultProperties.set("Display.Height", "210"); ourDefaultProperties.set("Emulation.CPU", "Auto-detect");