aboutsummaryrefslogtreecommitdiff
path: root/backends/wince/screen.cpp
diff options
context:
space:
mode:
authorNicolas Bacca2003-07-13 15:11:09 +0000
committerNicolas Bacca2003-07-13 15:11:09 +0000
commit4a3f0b547df4f09cd8032ce746f06d5e8e805cfc (patch)
tree3f3e55288cfd8bde977c9c5c79d4a451d2e86d0a /backends/wince/screen.cpp
parentbc1120b67ac85447cbb3dae5402c86451f7d9103 (diff)
downloadscummvm-rg350-4a3f0b547df4f09cd8032ce746f06d5e8e805cfc.tar.gz
scummvm-rg350-4a3f0b547df4f09cd8032ce746f06d5e8e805cfc.tar.bz2
scummvm-rg350-4a3f0b547df4f09cd8032ce746f06d5e8e805cfc.zip
Get rid of additional version #define
svn-id: r8985
Diffstat (limited to 'backends/wince/screen.cpp')
-rw-r--r--backends/wince/screen.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/backends/wince/screen.cpp b/backends/wince/screen.cpp
index 4da4b9755e..a0459882f6 100644
--- a/backends/wince/screen.cpp
+++ b/backends/wince/screen.cpp
@@ -21,8 +21,6 @@
#ifdef _WIN32_WCE
-#define POCKETSCUMM_VERSION "PPC 0.4.2cvs"
-
/* Original GFX code by Vasyl Tsvirkunov */
#include "wince.h"
@@ -56,6 +54,8 @@ static UBYTE invert = 0;
static int colorscale = 0;
unsigned char color_match[500]; // used for paletted issues
+extern const char *getBuildDate();
+
extern UBYTE item_toolbar[];
extern UBYTE item_toolbar_colors[];
extern UBYTE item_toolbarPortrait[];
@@ -819,7 +819,7 @@ void drawBlankGameSelection() {
void drawVideoDevice() {
char info[100];
- sprintf(info, "Video device : %s %s - version %s", gfx_device_name[_gfx_device], gfx_device_options_name[_gfx_option], POCKETSCUMM_VERSION);
+ sprintf(info, "Video device : %s %s - CVS %s PPC %s", gfx_device_name[_gfx_device], gfx_device_options_name[_gfx_option], SCUMMVM_VERSION, getBuildDate());
drawString(info, 10, 0, 2, 1);
/*
printString(video_device, 10, 270, 2, 0);