diff options
author | Vincent Bénony | 2016-01-06 08:33:56 +0100 |
---|---|---|
committer | Vincent Bénony | 2016-01-06 16:20:28 +0100 |
commit | a522c82f853a50163bd36fc64234f9a6c6c0b395 (patch) | |
tree | 93fb3246e4ef06113f40f67c8fff4a94624d03c7 /backends/platform/ios7 | |
parent | ac94ad116200cafca46cce23771309919110f6d5 (diff) | |
download | scummvm-rg350-a522c82f853a50163bd36fc64234f9a6c6c0b395.tar.gz scummvm-rg350-a522c82f853a50163bd36fc64234f9a6c6c0b395.tar.bz2 scummvm-rg350-a522c82f853a50163bd36fc64234f9a6c6c0b395.zip |
IOS: Removes a useless variable
Diffstat (limited to 'backends/platform/ios7')
-rw-r--r-- | backends/platform/ios7/ios7_video.mm | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/backends/platform/ios7/ios7_video.mm b/backends/platform/ios7/ios7_video.mm index e3c3edf06b..78e7dc254c 100644 --- a/backends/platform/ios7/ios7_video.mm +++ b/backends/platform/ios7/ios7_video.mm @@ -29,9 +29,6 @@ #include "common/system.h" #import "iOS7AppDelegate.h" -static int g_fullWidth; -static int g_fullHeight; - static int g_needsScreenUpdate = 0; #if 0 @@ -389,9 +386,6 @@ uint getSizeNextPOT(uint size) { [self setupGestureRecognizers]; - g_fullWidth = (int)MAX(frame.size.width, frame.size.height); - g_fullHeight = (int)MIN(frame.size.width, frame.size.height); - [self setContentScaleFactor:[[UIScreen mainScreen] scale]]; _scalerMemorySrc = NULL; |