mirror of https://github.com/stella-emu/stella.git
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
This commit is contained in:
parent
280d42d0e4
commit
ab92e184cd
|
@ -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 <assert.h>
|
||||
|
@ -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");
|
||||
|
|
Loading…
Reference in New Issue