aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/frotz/processor_table.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/glk/frotz/processor_table.cpp')
-rw-r--r--engines/glk/frotz/processor_table.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/glk/frotz/processor_table.cpp b/engines/glk/frotz/processor_table.cpp
index e53dae5709..b926725871 100644
--- a/engines/glk/frotz/processor_table.cpp
+++ b/engines/glk/frotz/processor_table.cpp
@@ -47,7 +47,7 @@ void Processor::z_copy_table() {
for (i = size - 1; i >= 0; i--) {
addr = zargs[0] + i;
LOW_BYTE(addr, value);
- storeb((zword) (zargs[1] + i), value);
+ storeb((zword)(zargs[1] + i), value);
}
}
}
@@ -109,7 +109,7 @@ finished:
}
void Processor::z_storeb() {
- storeb((zword) (zargs[0] + zargs[1]), zargs[2]);
+ storeb((zword)(zargs[0] + zargs[1]), zargs[2]);
}
void Processor::z_storew() {