mirror of https://github.com/stella-emu/stella.git
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:
parent
4233fa3ae4
commit
069ccc4d24
|
@ -13,7 +13,7 @@
|
||||||
// See the file "license" for information on usage and redistribution of
|
// See the file "license" for information on usage and redistribution of
|
||||||
// this file, and for a DISCLAIMER OF ALL WARRANTIES.
|
// 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"
|
#include "bspf.hxx"
|
||||||
|
@ -955,7 +955,6 @@ void Debugger::saveOldState()
|
||||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
void Debugger::setStartState()
|
void Debugger::setStartState()
|
||||||
{
|
{
|
||||||
cerr << "Debugger::setStartState()" << endl;
|
|
||||||
// Lock the bus each time the debugger is entered, so we don't disturb anything
|
// Lock the bus each time the debugger is entered, so we don't disturb anything
|
||||||
// mySystem->lockDataBus();
|
// mySystem->lockDataBus();
|
||||||
lockState();
|
lockState();
|
||||||
|
@ -1056,7 +1055,7 @@ GUI::Rect Debugger::getTabBounds() const
|
||||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
void Debugger::resizeDialog()
|
void Debugger::resizeDialog()
|
||||||
{
|
{
|
||||||
cerr << "Debugger::resizeDialog()\n";
|
// cerr << "Debugger::resizeDialog()\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
// See the file "license" for information on usage and redistribution of
|
// See the file "license" for information on usage and redistribution of
|
||||||
// this file, and for a DISCLAIMER OF ALL WARRANTIES.
|
// 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
|
// Based on code from ScummVM - Scumm Interpreter
|
||||||
// Copyright (C) 2002-2004 The ScummVM project
|
// 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),
|
mySourceAvailable(false),
|
||||||
myCurrentBank(-1)
|
myCurrentBank(-1)
|
||||||
{
|
{
|
||||||
cerr << "new RomWidget()" << endl;
|
|
||||||
|
|
||||||
int w = 58 * font.getMaxCharWidth(),
|
int w = 58 * font.getMaxCharWidth(),
|
||||||
h = 31 * font.getLineHeight();
|
h = 31 * font.getLineHeight();
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
// See the file "license" for information on usage and redistribution of
|
// See the file "license" for information on usage and redistribution of
|
||||||
// this file, and for a DISCLAIMER OF ALL WARRANTIES.
|
// 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>
|
#include <assert.h>
|
||||||
|
@ -137,8 +137,6 @@ void CartridgeF8::bank(uInt16 bank)
|
||||||
{
|
{
|
||||||
if(bankLocked) return;
|
if(bankLocked) return;
|
||||||
|
|
||||||
cerr << "CartF8: switching bank..." << endl;
|
|
||||||
|
|
||||||
// Remember what bank we're in
|
// Remember what bank we're in
|
||||||
myCurrentBank = bank;
|
myCurrentBank = bank;
|
||||||
uInt16 offset = myCurrentBank * 4096;
|
uInt16 offset = myCurrentBank * 4096;
|
||||||
|
|
Loading…
Reference in New Issue