From f6ae33b3d773d23b6f55ad0d150139960825a962 Mon Sep 17 00:00:00 2001 From: Chris Apers Date: Tue, 11 Apr 2006 18:11:03 +0000 Subject: There is no ::create function anymore in backends svn-id: r21800 --- backends/PalmOS/Src/be_create.cpp | 51 --------------------------------------- 1 file changed, 51 deletions(-) delete mode 100755 backends/PalmOS/Src/be_create.cpp (limited to 'backends/PalmOS') 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(); -} -- cgit v1.2.3