aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/hugo/hugo.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/glk/hugo/hugo.h')
-rw-r--r--engines/glk/hugo/hugo.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/engines/glk/hugo/hugo.h b/engines/glk/hugo/hugo.h
index 400bc652a3..74b885b982 100644
--- a/engines/glk/hugo/hugo.h
+++ b/engines/glk/hugo/hugo.h
@@ -1133,10 +1133,7 @@ private:
void hugo_blockfree(void *block) { free(block); }
#if defined (DEBUGGER)
- int CheckinRange(uint v1, uint v2, const char *v3) {
- // TODO: Where the heck is this actualy implemented in Gargoyle
- return 1;
- }
+ int CheckinRange(uint v1, uint v2, const char *v3) { return 1; }
/**
* Shorthand since many of these object functions may call CheckinRange() if the debugger
@@ -1144,7 +1141,7 @@ private:
*/
int CheckObjectRange(int obj);
- void DebugRunRoutine(long addr) {}
+ void DebugRunRoutine(long addr) { RunRoutine(addr); }
void RuntimeWarning(const char *msg) {}