aboutsummaryrefslogtreecommitdiff
path: root/engines/lure/debugger.cpp
diff options
context:
space:
mode:
authorMax Horn2006-09-16 15:01:14 +0000
committerMax Horn2006-09-16 15:01:14 +0000
commita2dc897fe58e5521361a07b1e39a8b4c84d0dacf (patch)
tree623d9f98ca93a828bbe4fd05bf2f4735a181b950 /engines/lure/debugger.cpp
parent250133baf0f665deca81d20631df1299ca571b81 (diff)
downloadscummvm-rg350-a2dc897fe58e5521361a07b1e39a8b4c84d0dacf.tar.gz
scummvm-rg350-a2dc897fe58e5521361a07b1e39a8b4c84d0dacf.tar.bz2
scummvm-rg350-a2dc897fe58e5521361a07b1e39a8b4c84d0dacf.zip
Reduce code duplication
svn-id: r23888
Diffstat (limited to 'engines/lure/debugger.cpp')
-rw-r--r--engines/lure/debugger.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/lure/debugger.cpp b/engines/lure/debugger.cpp
index 3567c8cced..4c67176a27 100644
--- a/engines/lure/debugger.cpp
+++ b/engines/lure/debugger.cpp
@@ -46,7 +46,7 @@ Debugger::Debugger(): Common::Debugger<Debugger>() {
DCmd_Register("hotspot", &Debugger::cmd_hotspot);
}
-int Debugger::strToInt(const char *s) {
+static int strToInt(const char *s) {
if (!*s)
// No string at all
return 0;