aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid-John Willis2011-04-11 18:15:14 +0100
committerDavid-John Willis2011-04-11 18:15:14 +0100
commitbb6bc31813e77b5547b365dc401c0b239952d7c3 (patch)
tree126d4d3b1827a27fff34b20c7641e34353cc97b7
parent5661570e4efd6ac64cfdbca68515c78329d11a77 (diff)
downloadscummvm-rg350-bb6bc31813e77b5547b365dc401c0b239952d7c3.tar.gz
scummvm-rg350-bb6bc31813e77b5547b365dc401c0b239952d7c3.tar.bz2
scummvm-rg350-bb6bc31813e77b5547b365dc401c0b239952d7c3.zip
GP2X: Mask off the graphics and events code behind a GP2X_OLD define.
* This is a temp thing while I finish up merging the GP2X and GPH code. I do not want the GP2X backend code dropped yet until this is complete.
-rw-r--r--backends/events/gp2xsdl/gp2xsdl-events.cpp2
-rw-r--r--backends/graphics/gp2xsdl/gp2xsdl-graphics.cpp5
2 files changed, 2 insertions, 5 deletions
diff --git a/backends/events/gp2xsdl/gp2xsdl-events.cpp b/backends/events/gp2xsdl/gp2xsdl-events.cpp
index 38b7a47346..86d4de384f 100644
--- a/backends/events/gp2xsdl/gp2xsdl-events.cpp
+++ b/backends/events/gp2xsdl/gp2xsdl-events.cpp
@@ -22,7 +22,7 @@
#include "common/scummsys.h"
-#if defined(GP2X)
+#if defined(GP2X_OLD)
#include "backends/events/gp2xsdl/gp2xsdl-events.h"
#include "backends/platform/gp2x/gp2x-hw.h"
diff --git a/backends/graphics/gp2xsdl/gp2xsdl-graphics.cpp b/backends/graphics/gp2xsdl/gp2xsdl-graphics.cpp
index 75a1f17674..6e5a35a1b1 100644
--- a/backends/graphics/gp2xsdl/gp2xsdl-graphics.cpp
+++ b/backends/graphics/gp2xsdl/gp2xsdl-graphics.cpp
@@ -18,14 +18,11 @@
* 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 "common/scummsys.h"
-#ifdef GP2X
+#if defined(GP2X_OLD)
#include "backends/graphics/gp2xsdl/gp2xsdl-graphics.h"
#include "graphics/scaler/aspect.h"