aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/ios7/iOS7ScummVMViewController.mm
diff options
context:
space:
mode:
authorVincent Bénony2015-12-07 11:34:11 +0100
committerVincent Bénony2016-01-06 16:17:34 +0100
commit699c3504814300415ca983fbef2ed172fa9020de (patch)
treeaf8cf1d8e938aef84eb8391aa57a05f79255e3b9 /backends/platform/ios7/iOS7ScummVMViewController.mm
parentce1b955dda2ad845419cb2373cd58452930776ff (diff)
downloadscummvm-rg350-699c3504814300415ca983fbef2ed172fa9020de.tar.gz
scummvm-rg350-699c3504814300415ca983fbef2ed172fa9020de.tar.bz2
scummvm-rg350-699c3504814300415ca983fbef2ed172fa9020de.zip
IOS: Renames iOS7 classes to avoid confusion
Diffstat (limited to 'backends/platform/ios7/iOS7ScummVMViewController.mm')
-rw-r--r--backends/platform/ios7/iOS7ScummVMViewController.mm32
1 files changed, 32 insertions, 0 deletions
diff --git a/backends/platform/ios7/iOS7ScummVMViewController.mm b/backends/platform/ios7/iOS7ScummVMViewController.mm
new file mode 100644
index 0000000000..f92fd0115c
--- /dev/null
+++ b/backends/platform/ios7/iOS7ScummVMViewController.mm
@@ -0,0 +1,32 @@
+/* ScummVM - Graphic Adventure Engine
+ *
+ * ScummVM is the legal property of its developers, whose names
+ * are too numerous to list here. Please refer to the COPYRIGHT
+ * file distributed with this source distribution.
+ *
+ * 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.
+ *
+ */
+
+#import "iOS7ScummVMViewController.h"
+
+
+@implementation iOS7ScummVMViewController
+
+- (BOOL)prefersStatusBarHidden {
+ return YES;
+}
+
+@end