aboutsummaryrefslogtreecommitdiff
path: root/scumm/debugger.h
diff options
context:
space:
mode:
authorMax Horn2003-10-02 22:42:03 +0000
committerMax Horn2003-10-02 22:42:03 +0000
commit3f55f2669d560489ee017d64f5bdd0f785cf796e (patch)
treebd8b3bc560b347a0ef58c7b23431e92142aeea50 /scumm/debugger.h
parent68810ac106ba538e7fb697e0f7fa6eb699a4c927 (diff)
downloadscummvm-rg350-3f55f2669d560489ee017d64f5bdd0f785cf796e.tar.gz
scummvm-rg350-3f55f2669d560489ee017d64f5bdd0f785cf796e.tar.bz2
scummvm-rg350-3f55f2669d560489ee017d64f5bdd0f785cf796e.zip
renamed class Scumm to ScummEngine (consisten with other engine names; also makes room for a potential 'Scumm' namespace)
svn-id: r10549
Diffstat (limited to 'scumm/debugger.h')
-rw-r--r--scumm/debugger.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/scumm/debugger.h b/scumm/debugger.h
index 078db8a383..31c786799b 100644
--- a/scumm/debugger.h
+++ b/scumm/debugger.h
@@ -24,7 +24,7 @@
// Choose between text console or ScummConsole
#define USE_CONSOLE 1
-class Scumm;
+class ScummEngine;
class ScummDebugger;
typedef bool (ScummDebugger::*DebugProc)(int argc, const char **argv);
@@ -52,10 +52,10 @@ public:
ScummDebugger();
void on_frame();
- void attach(Scumm *s, char *entry);
+ void attach(ScummEngine *s, char *entry);
protected:
- Scumm *_s;
+ ScummEngine *_s;
int _frame_countdown, _dvar_count, _dcmd_count;
DVar _dvars[256];
DCmd _dcmds[256];