Index: ./Games/Pingus/data/data/core.scr =================================================================== RCS file: /usr/local/cvsroot/Games/Pingus/data/data/core.scr,v retrieving revision 1.20 diff -u -r1.20 core.scr --- ./Games/Pingus/data/data/core.scr 17 Sep 2002 23:11:26 -0000 1.20 +++ ./Games/Pingus/data/data/core.scr 24 Oct 2002 00:04:26 -0000 @@ -107,6 +107,8 @@ unplayable = ../images/core/misc/unplayable.png (type=surface); unplayable2 = ../images/core/misc/unplayable2.png (type=surface); + + infinity = ../images/core/misc/infinity.png (type=surface); } section worldmap @@ -120,4 +122,4 @@ flaggreen = ../images/core/worldmap/flaggreen.png (type=surface, x=0, y=0, width=27, height=38); } -// EOF // \ No newline at end of file +// EOF // Index: ./Games/Pingus/src/time_display.cxx =================================================================== RCS file: /usr/local/cvsroot/Games/Pingus/src/time_display.cxx,v retrieving revision 1.9 diff -u -r1.9 time_display.cxx --- ./Games/Pingus/src/time_display.cxx 8 Oct 2002 18:18:21 -0000 1.9 +++ ./Games/Pingus/src/time_display.cxx 24 Oct 2002 00:04:27 -0000 @@ -29,6 +29,7 @@ #include "plf.hxx" TimeDisplay::TimeDisplay () + : infinity_symbol(PingusResource::load_surface("misc/infinity", "core")) { //font = PingusResource::load_font("Fonts/numbers","fonts"); font = PingusResource::load_font("Fonts/pingus_small","fonts"); @@ -42,7 +43,9 @@ if (server->get_plf()->get_time() == -1 && !(pingus_debug_flags & PINGUS_DEBUG_GAMETIME)) { - snprintf(time_string, 8, "00"); + infinity_symbol.put_screen(CL_Display::get_width() + - infinity_symbol.get_width() - 6, + 2); } else { @@ -69,8 +72,9 @@ time_value = server->get_world()->get_time_passed(); snprintf(time_string, 8, "%4d", time_value); } + + font->print_right(CL_Display::get_width() - 5, 1, time_string); } - font->print_right(CL_Display::get_width() - 5, 1, time_string); UNUSED_ARG(gc); } Index: ./Games/Pingus/src/time_display.hxx =================================================================== RCS file: /usr/local/cvsroot/Games/Pingus/src/time_display.hxx,v retrieving revision 1.7 diff -u -r1.7 time_display.hxx --- ./Games/Pingus/src/time_display.hxx 27 Sep 2002 11:26:44 -0000 1.7 +++ ./Games/Pingus/src/time_display.hxx 24 Oct 2002 00:04:27 -0000 @@ -30,6 +30,7 @@ private: Server* server; CL_Font* font; + CL_Surface infinity_symbol; public: TimeDisplay();