diff options
author | eriktorbjorn | 2011-07-02 20:28:11 +0200 |
---|---|---|
committer | eriktorbjorn | 2011-07-02 20:28:11 +0200 |
commit | 5f64f3ff4743b91559756a319c4a41ab36851ac1 (patch) | |
tree | 1baad854bc627fe1a0eff3cc978b8720734354dc | |
parent | ada4556b9ae3b7d94ccac8ecec2ed31ba959ad55 (diff) | |
download | scummvm-rg350-5f64f3ff4743b91559756a319c4a41ab36851ac1.tar.gz scummvm-rg350-5f64f3ff4743b91559756a319c4a41ab36851ac1.tar.bz2 scummvm-rg350-5f64f3ff4743b91559756a319c4a41ab36851ac1.zip |
CGE: Removed unused NumStr() function.
It was used, until my previous commit. :-)
-rw-r--r-- | engines/cge/vga13h.cpp | 8 | ||||
-rw-r--r-- | engines/cge/vga13h.h | 1 |
2 files changed, 0 insertions, 9 deletions
diff --git a/engines/cge/vga13h.cpp b/engines/cge/vga13h.cpp index 41d4b79469..a6275a3929 100644 --- a/engines/cge/vga13h.cpp +++ b/engines/cge/vga13h.cpp @@ -69,14 +69,6 @@ Seq _seq2[] = { { 0, 1, 0, 0, 0 }, { 1, 0, 0, 0, 0 } }; extern "C" void SNDMIDIPlay(void); -char *NumStr(char *str, int num) { - char *p = strchr(str, '#'); - if (p) - wtom(num, p, 10, 5); - return str; -} - - /* static void Video() { static uint16 SP_S; diff --git a/engines/cge/vga13h.h b/engines/cge/vga13h.h index 8bc24bc9fb..b14edb9ba9 100644 --- a/engines/cge/vga13h.h +++ b/engines/cge/vga13h.h @@ -334,7 +334,6 @@ uint8 Closest(CBLK *pal, CBLK x) { #undef f } -char *NumStr(char *str, int num); //static void Video (void); uint16 *SaveScreen(void); void RestoreScreen(uint16 * &sav); |