diff options
| author | Max Horn | 2003-05-10 21:49:59 +0000 |
|---|---|---|
| committer | Max Horn | 2003-05-10 21:49:59 +0000 |
| commit | acb35fc915284cb3b194ba8864eb24e39fff992e (patch) | |
| tree | dfc1dd77fcda48c14ee8ea0e898cdbd023a14344 /scumm/debugger.cpp | |
| parent | e5fe73726a554d312f30682508d2474c8734b0ef (diff) | |
| download | scummvm-rg350-acb35fc915284cb3b194ba8864eb24e39fff992e.tar.gz scummvm-rg350-acb35fc915284cb3b194ba8864eb24e39fff992e.tar.bz2 scummvm-rg350-acb35fc915284cb3b194ba8864eb24e39fff992e.zip | |
renamed _scrWidth/_scrHeight -> _roomWidht/_roomHeight, and _realWidth/_realHeight -> _screenWidth/_screenHeight (inspired by MadMoose, but I'll take the blame - still this seems much more logical & intuitive)
svn-id: r7423
Diffstat (limited to 'scumm/debugger.cpp')
| -rw-r--r-- | scumm/debugger.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/debugger.cpp b/scumm/debugger.cpp index fe2a16a747..a9a7d6e881 100644 --- a/scumm/debugger.cpp +++ b/scumm/debugger.cpp @@ -183,7 +183,7 @@ void ScummDebugger::DCmd_Register(const char *cmdname, DebugProc pointer) { void ScummDebugger::enter() { #ifdef USE_CONSOLE if (!_s->_debuggerDialog) { - _s->_debuggerDialog = new ConsoleDialog(_s->_newgui, _s->_realWidth); + _s->_debuggerDialog = new ConsoleDialog(_s->_newgui, _s->_screenWidth); Debug_Printf("Debugger started, type 'exit' to return to the game\n"); } |
