aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Apers2006-02-11 18:45:00 +0000
committerChris Apers2006-02-11 18:45:00 +0000
commit8f3ae56c69614d5f893e7498ac4aee809f95ae69 (patch)
tree4ec70a114d4445041519e18b45860b8663b1139c
parent4f41e84f514002614d82509bb802f2e4bf8f5f7e (diff)
downloadscummvm-rg350-8f3ae56c69614d5f893e7498ac4aee809f95ae69.tar.gz
scummvm-rg350-8f3ae56c69614d5f893e7498ac4aee809f95ae69.tar.bz2
scummvm-rg350-8f3ae56c69614d5f893e7498ac4aee809f95ae69.zip
Fixed volRefNum default value
svn-id: r20568
-rw-r--r--backends/PalmOS/Src/skin.cpp3
-rw-r--r--backends/PalmOS/Src/skin.h2
2 files changed, 4 insertions, 1 deletions
diff --git a/backends/PalmOS/Src/skin.cpp b/backends/PalmOS/Src/skin.cpp
index 17bb51ed0f..f38fe88d46 100644
--- a/backends/PalmOS/Src/skin.cpp
+++ b/backends/PalmOS/Src/skin.cpp
@@ -1,6 +1,7 @@
/* ScummVM - Scumm Interpreter
* Copyright (C) 2001 Ludvig Strigeus
* Copyright (C) 2001-2006 The ScummVM project
+ * Copyright (C) 2002-2006 Chris Apers - PalmOS Backend
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
@@ -174,7 +175,7 @@ void SknApplySkin() {
skinDBP = SknOpenSkin();
- if (gPrefs->card.volRefNum != sysInvalidRefNum)
+ if (gPrefs->card.volRefNum != vfsInvalidVolRef)
FrmShowObject(frmP, FrmGetObjectIndex (frmP, MainMSBitMap));
else
FrmShowObject(frmP, FrmGetObjectIndex (frmP, MainMSNoneBitMap));
diff --git a/backends/PalmOS/Src/skin.h b/backends/PalmOS/Src/skin.h
index 52a2c811c7..2047532fd8 100644
--- a/backends/PalmOS/Src/skin.h
+++ b/backends/PalmOS/Src/skin.h
@@ -1,6 +1,7 @@
/* ScummVM - Scumm Interpreter
* Copyright (C) 2001 Ludvig Strigeus
* Copyright (C) 2001-2006 The ScummVM project
+ * Copyright (C) 2002-2006 Chris Apers - PalmOS Backend
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
@@ -20,6 +21,7 @@
* $Id$
*
*/
+
#ifndef __SKIN_H__
#define __SKIN_H__