aboutsummaryrefslogtreecommitdiff
path: root/scumm/debugger.cpp
diff options
context:
space:
mode:
authorPaweł Kołodziejski2003-09-23 08:56:12 +0000
committerPaweł Kołodziejski2003-09-23 08:56:12 +0000
commit698e40ff1bacd1d881d50916cf4ff126f83f2129 (patch)
tree486e570a7fc3cedcca2c81ffc1eb21a97f761da5 /scumm/debugger.cpp
parent273e1ac1a090c3a63dff93f11288bda9e201af0c (diff)
downloadscummvm-rg350-698e40ff1bacd1d881d50916cf4ff126f83f2129.tar.gz
scummvm-rg350-698e40ff1bacd1d881d50916cf4ff126f83f2129.tar.bz2
scummvm-rg350-698e40ff1bacd1d881d50916cf4ff126f83f2129.zip
fixed conversion warning under vc7
svn-id: r10370
Diffstat (limited to 'scumm/debugger.cpp')
-rw-r--r--scumm/debugger.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/debugger.cpp b/scumm/debugger.cpp
index 8f49b6dd25..fefe6e2700 100644
--- a/scumm/debugger.cpp
+++ b/scumm/debugger.cpp
@@ -200,7 +200,7 @@ void ScummDebugger::DCmd_Register(const char *cmdname, DebugProc pointer) {
void ScummDebugger::enter() {
#if USE_CONSOLE
if (!_s->_debuggerDialog) {
- _s->_debuggerDialog = new ConsoleDialog(_s->_newgui, 1.0, 0.67);
+ _s->_debuggerDialog = new ConsoleDialog(_s->_newgui, 1.0, 0.67F);
Debug_Printf("Debugger started, type 'exit' to return to the game.\n");
Debug_Printf("Type 'help' to see a little list of commands and variables.\n");