From 5c2d5eaf333e998fbdd80d525c1d5e7f36837cd5 Mon Sep 17 00:00:00 2001 From: "simon.kagstrom" Date: Sat, 30 Jan 2010 08:40:43 +0000 Subject: [PATCH] New status bar system instead, skip this --- Src/Display_SDL.h | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/Src/Display_SDL.h b/Src/Display_SDL.h index 868a721..3bd2184 100644 --- a/Src/Display_SDL.h +++ b/Src/Display_SDL.h @@ -329,21 +329,6 @@ void C64Display::Update(uint8 *src_pixels) } Gui::gui->draw(real_screen); - if (this->TheC64->network_connection_type != NONE) - draw_string(real_screen, 0, 0, networktraffic_string, black, fill_gray); - if (this->on_screen_message) { - Uint32 time_now = SDL_GetTicks(); - - draw_string(real_screen, 60, 30, - this->on_screen_message, black, fill_gray); - if (time_now - this->on_screen_message_start_time > this->on_screen_message_time * 1000) - this->on_screen_message = NULL; - } - if (this->entering_text_message) { - draw_string(real_screen, 60, 30, - this->text_message, black, shadow_gray); - } - SDL_Flip(real_screen); }