aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/frotz/processor_buffer.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2019-02-10 11:19:18 -0800
committerPaul Gilbert2019-02-10 11:19:18 -0800
commit0a08d2e18b202cc0167c5f9746c9707d5efe86ef (patch)
treec472b59e69e6347481c9289ae64eee0b29fb4aff /engines/glk/frotz/processor_buffer.cpp
parentdbfc657a2c305946483e60d8bd68bb40575fb3a4 (diff)
downloadscummvm-rg350-0a08d2e18b202cc0167c5f9746c9707d5efe86ef.tar.gz
scummvm-rg350-0a08d2e18b202cc0167c5f9746c9707d5efe86ef.tar.bz2
scummvm-rg350-0a08d2e18b202cc0167c5f9746c9707d5efe86ef.zip
GLK: FROTZ: Fixes for saving and restoring in V6 games
Diffstat (limited to 'engines/glk/frotz/processor_buffer.cpp')
-rw-r--r--engines/glk/frotz/processor_buffer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/glk/frotz/processor_buffer.cpp b/engines/glk/frotz/processor_buffer.cpp
index 65f1fdacb5..9473411b51 100644
--- a/engines/glk/frotz/processor_buffer.cpp
+++ b/engines/glk/frotz/processor_buffer.cpp
@@ -167,7 +167,7 @@ void Processor::runtimeError(ErrorCode errNum) {
if ((_err_report_mode == ERR_REPORT_ALWAYS)
|| (_err_report_mode == ERR_REPORT_ONCE && wasfirst)) {
- long pc;
+ offset_t pc;
GET_PC(pc);
print_string("Warning: ");
print_string(ERR_MESSAGES[errNum - 1]);