aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/iphone/iphone_video.h
diff options
context:
space:
mode:
authorJohannes Schickel2012-04-02 00:02:31 +0200
committerJohannes Schickel2012-04-02 00:03:28 +0200
commitb886bc0a418462dd2bb5c0f0d1cf21f8f109b34b (patch)
tree3f71cffdc5191293549a0c3dade4c6c0ef9f68be /backends/platform/iphone/iphone_video.h
parenta92c54454f151377e0fc34be525b90c42b42d4af (diff)
downloadscummvm-rg350-b886bc0a418462dd2bb5c0f0d1cf21f8f109b34b.tar.gz
scummvm-rg350-b886bc0a418462dd2bb5c0f0d1cf21f8f109b34b.tar.bz2
scummvm-rg350-b886bc0a418462dd2bb5c0f0d1cf21f8f109b34b.zip
IPHONE: Use InternalEvent directly.
Diffstat (limited to 'backends/platform/iphone/iphone_video.h')
-rw-r--r--backends/platform/iphone/iphone_video.h10
1 files changed, 1 insertions, 9 deletions
diff --git a/backends/platform/iphone/iphone_video.h b/backends/platform/iphone/iphone_video.h
index ed147eed2a..6b8c25ebcf 100644
--- a/backends/platform/iphone/iphone_video.h
+++ b/backends/platform/iphone/iphone_video.h
@@ -36,14 +36,6 @@
#include "common/list.h"
-struct InternalEvent {
- InternalEvent() : type(), value1(), value2() {}
- InternalEvent(InputEvent t, int v1, int v2) : type(t), value1(v1), value2(v2) {}
-
- InputEvent type;
- int value1, value2;
-};
-
@interface iPhoneView : UIView {
VideoContext _videoContext;
@@ -111,7 +103,7 @@ struct InternalEvent {
- (void)applicationResume;
-- (bool)fetchEvent:(int *)outEvent value1:(int *)v1 value2:(int *)v2;
+- (bool)fetchEvent:(InternalEvent *)event;
@end