aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/iphone/osys_main.cpp
diff options
context:
space:
mode:
authorJohannes Schickel2012-02-20 00:35:14 +0100
committerJohannes Schickel2012-02-20 00:35:14 +0100
commit723a38c699d2bd7a8e8967e231ae4360d5a77f1b (patch)
treedfefcca1c6dbbeece7e2bb5c5196aa29d2e823e9 /backends/platform/iphone/osys_main.cpp
parent93d80793b459d6567fdd9717e02a3473e5f4fcec (diff)
downloadscummvm-rg350-723a38c699d2bd7a8e8967e231ae4360d5a77f1b.tar.gz
scummvm-rg350-723a38c699d2bd7a8e8967e231ae4360d5a77f1b.tar.bz2
scummvm-rg350-723a38c699d2bd7a8e8967e231ae4360d5a77f1b.zip
IPHONE: Rename screen related buffers a bit.
Diffstat (limited to 'backends/platform/iphone/osys_main.cpp')
-rw-r--r--backends/platform/iphone/osys_main.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/backends/platform/iphone/osys_main.cpp b/backends/platform/iphone/osys_main.cpp
index 5cf8913835..8064fe4445 100644
--- a/backends/platform/iphone/osys_main.cpp
+++ b/backends/platform/iphone/osys_main.cpp
@@ -53,8 +53,8 @@ SoundProc OSystem_IPHONE::s_soundCallback = NULL;
void *OSystem_IPHONE::s_soundParam = NULL;
OSystem_IPHONE::OSystem_IPHONE() :
- _mixer(NULL), _offscreen(NULL),
- _overlayVisible(false), _fullscreen(NULL),
+ _mixer(NULL), _gameScreenRaw(NULL),
+ _overlayVisible(false), _gameScreenConverted(NULL),
_mouseHeight(0), _mouseWidth(0), _mouseBuf(NULL), _lastMouseTap(0), _queuedEventTime(0),
_secondaryTapped(false), _lastSecondaryTap(0),
_screenOrientation(kScreenOrientationFlippedLandscape), _mouseClickAndDragEnabled(false),
@@ -70,8 +70,8 @@ OSystem_IPHONE::~OSystem_IPHONE() {
AudioQueueDispose(s_AudioQueue.queue, true);
delete _mixer;
- delete _offscreen;
- delete _fullscreen;
+ delete _gameScreenRaw;
+ delete _gameScreenConverted;
}
int OSystem_IPHONE::timerHandler(int t) {