aboutsummaryrefslogtreecommitdiff
path: root/sword1/screen.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'sword1/screen.cpp')
-rw-r--r--sword1/screen.cpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/sword1/screen.cpp b/sword1/screen.cpp
index 553424f85c..ce80b3298c 100644
--- a/sword1/screen.cpp
+++ b/sword1/screen.cpp
@@ -763,17 +763,6 @@ void SwordScreen::showFrame(uint16 x, uint16 y, uint32 resId, uint32 frameNo, co
_system->copy_rect(frame, 40, x, y, 40, 40);
}
-void SwordScreen::clearMenu(uint8 menuType) {
- // isn't there a better way to do this?
- uint8 *tmp = (uint8*)malloc(640 * 40);
- memset(tmp, 0, 640 * 40);
- if (menuType == MENU_BOT)
- _system->copy_rect(tmp, 640, 0, 440, 640, 40);
- else
- _system->copy_rect(tmp, 640, 0, 0, 640, 40);
- free(tmp);
-}
-
// ------------------- router debugging code --------------------------------
void SwordScreen::vline(uint16 x, uint16 y1, uint16 y2) {