aboutsummaryrefslogtreecommitdiff
path: root/backends
diff options
context:
space:
mode:
Diffstat (limited to 'backends')
-rw-r--r--backends/midi/adlib.cpp4
-rw-r--r--backends/wince/screen.cpp2
-rw-r--r--backends/wince/smartphone.cpp2
3 files changed, 4 insertions, 4 deletions
diff --git a/backends/midi/adlib.cpp b/backends/midi/adlib.cpp
index 9483c14b44..cbbeb59b7e 100644
--- a/backends/midi/adlib.cpp
+++ b/backends/midi/adlib.cpp
@@ -872,11 +872,11 @@ void MidiDriver_ADLIB::close() {
uint i;
for (i = 0; i < ARRAYSIZE(_voices); ++i) {
if (_voices [i]._part)
- mc_off (&_voices [i]);
+ mc_off(&_voices [i]);
}
// Detach the premix callback handler
- _mixer->setupPremix (0, 0);
+ _mixer->setupPremix(0, 0);
// Turn off the OPL emulation
// YM3812Shutdown();
diff --git a/backends/wince/screen.cpp b/backends/wince/screen.cpp
index a0459882f6..5432ecbbcb 100644
--- a/backends/wince/screen.cpp
+++ b/backends/wince/screen.cpp
@@ -819,7 +819,7 @@ void drawBlankGameSelection() {
void drawVideoDevice() {
char info[100];
- sprintf(info, "Video device : %s %s - CVS %s PPC %s", gfx_device_name[_gfx_device], gfx_device_options_name[_gfx_option], SCUMMVM_VERSION, getBuildDate());
+ sprintf(info, "Video device : %s %s - CVS %s PPC %s", gfx_device_name[_gfx_device], gfx_device_options_name[_gfx_option], gScummVMVersion, getBuildDate());
drawString(info, 10, 0, 2, 1);
/*
printString(video_device, 10, 270, 2, 0);
diff --git a/backends/wince/smartphone.cpp b/backends/wince/smartphone.cpp
index c20d6bce67..0f1c507004 100644
--- a/backends/wince/smartphone.cpp
+++ b/backends/wince/smartphone.cpp
@@ -653,7 +653,7 @@ void doPaint() {
DrawText(hDC, TEXT("http://www.scummvm.org"), -1, &rcClient, DT_CENTER | DT_SINGLELINE);
rcClient.left = 0;
rcClient.top = 90;
- DrawText(hDC, TEXT(SCUMMVM_VERSION), -1, &rcClient, DT_CENTER | DT_SINGLELINE);
+ DrawText(hDC, TEXT(gScummVMVersion), -1, &rcClient, DT_CENTER | DT_SINGLELINE);
rcClient.left = 0;
rcClient.top = 110;
DrawText(hDC, TEXT("http://arisme.free.fr"), -1, &rcClient, DT_CENTER | DT_SINGLELINE);