Removed stray debugging output

git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@828 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
urchlay 2005-10-13 01:13:20 +00:00
parent 4233fa3ae4
commit 069ccc4d24
3 changed files with 4 additions and 9 deletions

View File

@ -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";
}
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

View File

@ -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();

View File

@ -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 <assert.h>
@ -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;