aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/frotz/processor_screen.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2019-01-01 19:04:12 -0800
committerPaul Gilbert2019-01-01 19:04:12 -0800
commitb4c3df62e32e0c25001b8149bbd8311b54f953f0 (patch)
treec62fa961df68c674862670c2fe25fcdef8e22349 /engines/glk/frotz/processor_screen.cpp
parentfd2dda4c18b97500bcfca8b4e10b8d420d5b5dbd (diff)
downloadscummvm-rg350-b4c3df62e32e0c25001b8149bbd8311b54f953f0.tar.gz
scummvm-rg350-b4c3df62e32e0c25001b8149bbd8311b54f953f0.tar.bz2
scummvm-rg350-b4c3df62e32e0c25001b8149bbd8311b54f953f0.zip
GLK: FROTZ: Cleanup of incorrect namespace comments
Diffstat (limited to 'engines/glk/frotz/processor_screen.cpp')
-rw-r--r--engines/glk/frotz/processor_screen.cpp12
1 files changed, 3 insertions, 9 deletions
diff --git a/engines/glk/frotz/processor_screen.cpp b/engines/glk/frotz/processor_screen.cpp
index 60672c85ab..da45fa16a3 100644
--- a/engines/glk/frotz/processor_screen.cpp
+++ b/engines/glk/frotz/processor_screen.cpp
@@ -190,11 +190,7 @@ void Processor::z_buffer_mode() {
}
void Processor::z_buffer_screen() {
-#ifdef TODO
-store((zword)os_buffer_screen((zargs[0] == (zword)-1) ? -1 : zargs[0]));
-#else
store(0);
-#endif
}
void Processor::z_erase_line() {
@@ -209,8 +205,7 @@ void Processor::z_erase_line() {
void Processor::z_erase_window() {
short w = zargs[0];
- if (w == -2)
- {
+ if (w == -2) {
if (_wp._upper) {
glk_set_window(_wp._upper);
#ifdef GARGLK
@@ -221,8 +216,7 @@ void Processor::z_erase_window() {
}
glk_window_clear(_wp._lower);
}
- if (w == -1)
- {
+ if (w == -1) {
if (_wp._upper) {
glk_set_window(_wp._upper);
#ifdef GARGLK
@@ -588,5 +582,5 @@ void Processor::z_split_window() {
split_window(zargs[0]);
}
-} // End of namespace Scott
+} // End of namespace Frotz
} // End of namespace Glk