From 069ccc4d24d560a42428f77dc270ddb3824148b2 Mon Sep 17 00:00:00 2001 From: urchlay Date: Thu, 13 Oct 2005 01:13:20 +0000 Subject: [PATCH] Removed stray debugging output git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@828 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba --- stella/src/debugger/Debugger.cxx | 5 ++--- stella/src/debugger/gui/RomWidget.cxx | 4 +--- stella/src/emucore/CartF8.cxx | 4 +--- 3 files changed, 4 insertions(+), 9 deletions(-) diff --git a/stella/src/debugger/Debugger.cxx b/stella/src/debugger/Debugger.cxx index 5214c9e5d..a8f79da51 100644 --- a/stella/src/debugger/Debugger.cxx +++ b/stella/src/debugger/Debugger.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: Debugger.cxx,v 1.99 2005-10-13 00:59:30 urchlay Exp $ +// $Id: Debugger.cxx,v 1.100 2005-10-13 01:13:20 urchlay Exp $ //============================================================================ #include "bspf.hxx" @@ -955,7 +955,6 @@ void Debugger::saveOldState() // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - void Debugger::setStartState() { - cerr << "Debugger::setStartState()" << endl; // Lock the bus each time the debugger is entered, so we don't disturb anything // mySystem->lockDataBus(); lockState(); @@ -1056,7 +1055,7 @@ GUI::Rect Debugger::getTabBounds() const // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - void Debugger::resizeDialog() { -cerr << "Debugger::resizeDialog()\n"; +// cerr << "Debugger::resizeDialog()\n"; } // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/stella/src/debugger/gui/RomWidget.cxx b/stella/src/debugger/gui/RomWidget.cxx index 0a9dd0dfa..cf481279f 100644 --- a/stella/src/debugger/gui/RomWidget.cxx +++ b/stella/src/debugger/gui/RomWidget.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: RomWidget.cxx,v 1.10 2005-10-13 00:59:30 urchlay Exp $ +// $Id: RomWidget.cxx,v 1.11 2005-10-13 01:13:20 urchlay Exp $ // // Based on code from ScummVM - Scumm Interpreter // Copyright (C) 2002-2004 The ScummVM project @@ -43,8 +43,6 @@ RomWidget::RomWidget(GuiObject* boss, const GUI::Font& font, int x, int y) mySourceAvailable(false), myCurrentBank(-1) { - cerr << "new RomWidget()" << endl; - int w = 58 * font.getMaxCharWidth(), h = 31 * font.getLineHeight(); diff --git a/stella/src/emucore/CartF8.cxx b/stella/src/emucore/CartF8.cxx index 3b59cec55..a365c6003 100644 --- a/stella/src/emucore/CartF8.cxx +++ b/stella/src/emucore/CartF8.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: CartF8.cxx,v 1.9 2005-10-12 03:32:28 urchlay Exp $ +// $Id: CartF8.cxx,v 1.10 2005-10-13 01:13:20 urchlay Exp $ //============================================================================ #include @@ -137,8 +137,6 @@ void CartridgeF8::bank(uInt16 bank) { if(bankLocked) return; - cerr << "CartF8: switching bank..." << endl; - // Remember what bank we're in myCurrentBank = bank; uInt16 offset = myCurrentBank * 4096;