diff options
| author | Filippos Karapetis | 2010-07-17 19:11:59 +0000 |
|---|---|---|
| committer | Filippos Karapetis | 2010-07-17 19:11:59 +0000 |
| commit | 48b288d9aa3fdb6079ec5d5be1cc56f1f446f945 (patch) | |
| tree | bbca2177a68ecad675688e17f91c237a958bcc7e | |
| parent | fb206fb7c0227ba24afc7c12cfd55d5219dcbe77 (diff) | |
| download | scummvm-rg350-48b288d9aa3fdb6079ec5d5be1cc56f1f446f945.tar.gz scummvm-rg350-48b288d9aa3fdb6079ec5d5be1cc56f1f446f945.tar.bz2 scummvm-rg350-48b288d9aa3fdb6079ec5d5be1cc56f1f446f945.zip | |
Fixing compilation with MSVC
svn-id: r50966
| -rw-r--r-- | gui/debugger.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/debugger.cpp b/gui/debugger.cpp index 71728e8b13..9bd3b35915 100644 --- a/gui/debugger.cpp +++ b/gui/debugger.cpp @@ -378,7 +378,7 @@ char *Debugger::readlineComplete(const char *input, int state) { #endif // Variable registration function -void Debugger::DVar_Register(const Common::String &varname, void *pointer, int type, int arraySize) { +void Debugger::DVar_Register(const Common::String &varname, void *pointer, VarType type, int arraySize) { // TODO: Filter out duplicates // TODO: Sort this list? Then we can do binary search later on when doing lookups. assert(pointer); |
