aboutsummaryrefslogtreecommitdiff
path: root/engines/gargoyle/frotz/processor.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/gargoyle/frotz/processor.h')
-rw-r--r--engines/gargoyle/frotz/processor.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/engines/gargoyle/frotz/processor.h b/engines/gargoyle/frotz/processor.h
index 1554265092..b70bf440a2 100644
--- a/engines/gargoyle/frotz/processor.h
+++ b/engines/gargoyle/frotz/processor.h
@@ -208,14 +208,16 @@ private:
*/
/**
- * Write a byte value to the dynamic Z-machine memory.
+ * Generates a runtime error
*/
- void storeb(zword addr, zbyte value);
+ virtual void runtimeError(ErrorCode errNum) override {
+ Errors::runtimeError(errNum);
+ }
/**
- * Write a word value to the dynamic Z-machine memory.
+ * Called when the H_FLAGS field of the header has changed
*/
- void storew(zword addr, zword value);
+ virtual void flagsChanged(zbyte value) override;
/**
* \defgroup Object support methods