diff options
author | James Brown | 2002-12-28 04:51:34 +0000 |
---|---|---|
committer | James Brown | 2002-12-28 04:51:34 +0000 |
commit | 92c8e4ef1ee3bb500685e7eceebcf3df29c8520c (patch) | |
tree | 7dad3852d2db379e716eda9092597eee22289c9d /scumm | |
parent | ae5b30df3d67644f341a30997de5192fed8bcbdc (diff) | |
download | scummvm-rg350-92c8e4ef1ee3bb500685e7eceebcf3df29c8520c.tar.gz scummvm-rg350-92c8e4ef1ee3bb500685e7eceebcf3df29c8520c.tar.bz2 scummvm-rg350-92c8e4ef1ee3bb500685e7eceebcf3df29c8520c.zip |
Fix NewGui for higher resolutions (eg, CMI)
svn-id: r6216
Diffstat (limited to 'scumm')
-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 7c50c9a659..c882cc2bea 100644 --- a/scumm/debugger.cpp +++ b/scumm/debugger.cpp @@ -128,7 +128,7 @@ void ScummDebugger::enter() { #ifdef USE_CONSOLE if (!_s->_debuggerDialog) { - _s->_debuggerDialog = new ConsoleDialog(_s->_newgui); + _s->_debuggerDialog = new ConsoleDialog(_s->_newgui, _s->_realWidth); Debug_Printf("Debugger started, type 'exit' to return to the game\n"); } |