diff options
author | Jordi Vilalta Prat | 2009-04-04 10:10:15 +0000 |
---|---|---|
committer | Jordi Vilalta Prat | 2009-04-04 10:10:15 +0000 |
commit | b82707463accf9f7e988ceb19ab01cd6645686f4 (patch) | |
tree | aa82f7ea3f9b0ebf04319ccaf6d32b3cbc72cd14 /backends | |
parent | 3687838d192ffe471601de9285bb036a3aa38dcf (diff) | |
download | scummvm-rg350-b82707463accf9f7e988ceb19ab01cd6645686f4.tar.gz scummvm-rg350-b82707463accf9f7e988ceb19ab01cd6645686f4.tar.bz2 scummvm-rg350-b82707463accf9f7e988ceb19ab01cd6645686f4.zip |
Remove the obsolete IPHONE_BACKEND define
svn-id: r39835
Diffstat (limited to 'backends')
-rw-r--r-- | backends/platform/iphone/osys_iphone.cpp | 5 | ||||
-rw-r--r-- | backends/platform/iphone/osys_iphone.h | 4 |
2 files changed, 0 insertions, 9 deletions
diff --git a/backends/platform/iphone/osys_iphone.cpp b/backends/platform/iphone/osys_iphone.cpp index d11392e953..ca32a8d3d4 100644 --- a/backends/platform/iphone/osys_iphone.cpp +++ b/backends/platform/iphone/osys_iphone.cpp @@ -23,8 +23,6 @@ * */ -#if defined(IPHONE_BACKEND) - #include <unistd.h> #include <pthread.h> @@ -1421,6 +1419,3 @@ void iphone_main(int argc, char *argv[]) { scummvm_main(argc, argv); g_system->quit(); // TODO: Consider removing / replacing this! } - -#endif - diff --git a/backends/platform/iphone/osys_iphone.h b/backends/platform/iphone/osys_iphone.h index 6ae5ed34d7..c652d06086 100644 --- a/backends/platform/iphone/osys_iphone.h +++ b/backends/platform/iphone/osys_iphone.h @@ -23,8 +23,6 @@ * */ -#ifdef IPHONE_BACKEND - #include "graphics/surface.h" #include "iphone_common.h" #include "backends/base-backend.h" @@ -210,5 +208,3 @@ protected: bool handleEvent_mouseDragged(Common::Event &event, int x, int y); }; - -#endif |