From c8599f2bc0ba3f8876a1bcbecc7d853a39ee485a Mon Sep 17 00:00:00 2001 From: stephena Date: Thu, 20 Oct 2005 19:01:58 +0000 Subject: [PATCH] First pass at making default debugger area smaller. It still doesn't work correctly though. git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@852 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba --- stella/src/common/Version.hxx | 4 ++-- stella/src/debugger/Debugger.hxx | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/stella/src/common/Version.hxx b/stella/src/common/Version.hxx index e0b4619d5..6dc269727 100644 --- a/stella/src/common/Version.hxx +++ b/stella/src/common/Version.hxx @@ -13,12 +13,12 @@ // See the file "license" for information on usage and redistribution of // this file, and for a DISCLAIMER OF ALL WARRANTIES. // -// $Id: Version.hxx,v 1.9 2005-10-14 13:50:00 stephena Exp $ +// $Id: Version.hxx,v 1.10 2005-10-20 19:01:58 stephena Exp $ //============================================================================ #ifndef VERSION_HXX #define VERSION_HXX -#define STELLA_VERSION "2.0" +#define STELLA_VERSION "2.0.1" #endif diff --git a/stella/src/debugger/Debugger.hxx b/stella/src/debugger/Debugger.hxx index 9bea278d8..93334b5a8 100644 --- a/stella/src/debugger/Debugger.hxx +++ b/stella/src/debugger/Debugger.hxx @@ -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: Debugger.hxx,v 1.80 2005-10-12 03:32:28 urchlay Exp $ +// $Id: Debugger.hxx,v 1.81 2005-10-20 19:01:58 stephena Exp $ //============================================================================ #ifndef DEBUGGER_HXX @@ -52,9 +52,9 @@ typedef map FunctionDefMap; enum { kDebuggerWidth = 1023, - kDebuggerHeight = 767, + kDebuggerHeight = 700, kDebuggerLineHeight = 15, // based on the height of the console font - kDebuggerLines = 35, + kDebuggerLines = 27, }; // Constants for RAM area @@ -79,7 +79,7 @@ typedef uInt16 (Debugger::*DEBUGGER_WORD_METHOD)(); for all debugging operations in Stella (parser, 6502 debugger, etc). @author Stephen Anthony - @version $Id: Debugger.hxx,v 1.80 2005-10-12 03:32:28 urchlay Exp $ + @version $Id: Debugger.hxx,v 1.81 2005-10-20 19:01:58 stephena Exp $ */ class Debugger : public DialogContainer {