aboutsummaryrefslogtreecommitdiff
path: root/backends/PalmOS
diff options
context:
space:
mode:
authorChris Apers2006-04-11 18:11:03 +0000
committerChris Apers2006-04-11 18:11:03 +0000
commitf6ae33b3d773d23b6f55ad0d150139960825a962 (patch)
treee829247ef8dbebfc970866505ae6751f114d9120 /backends/PalmOS
parentd32320da0f181eb62c377cb64e70f2cb54a1fc87 (diff)
downloadscummvm-rg350-f6ae33b3d773d23b6f55ad0d150139960825a962.tar.gz
scummvm-rg350-f6ae33b3d773d23b6f55ad0d150139960825a962.tar.bz2
scummvm-rg350-f6ae33b3d773d23b6f55ad0d150139960825a962.zip
There is no ::create function anymore in backends
svn-id: r21800
Diffstat (limited to 'backends/PalmOS')
-rwxr-xr-xbackends/PalmOS/Src/be_create.cpp51
1 files changed, 0 insertions, 51 deletions
diff --git a/backends/PalmOS/Src/be_create.cpp b/backends/PalmOS/Src/be_create.cpp
deleted file mode 100755
index 756ac010e5..0000000000
--- a/backends/PalmOS/Src/be_create.cpp
+++ /dev/null
@@ -1,51 +0,0 @@
-/* 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
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
-
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
-
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- *
- * $URL$
- * $Id$
- *
- */
-
-#include "be_zodiac.h"
-#include "be_os5ex.h"
-
-OSystem *OSystem_PalmOS5_create() {
- if (gVars->advancedMode)
- return OSystem_PalmOS5Ex::create();
- else
- return OSystem_PalmOS5::create();
-}
-
-OSystem *OSystem_PalmOS5::create() {
- return new OSystem_PalmOS5();
-}
-
-#ifdef PALMOS_ARM
-OSystem *OSystem_PalmOS5Ex::create() {
- return new OSystem_PalmOS5Ex();
-}
-#endif
-
-OSystem *OSystem_PalmZodiac_create() {
- return OSystem_PalmZodiac::create();
-}
-
-OSystem *OSystem_PalmZodiac::create() {
- return new OSystem_PalmZodiac();
-}