project_files/HedgewarsMobile/Classes/GameInterfaceBridge.m
changeset 6667 142fe596e75e
parent 6656 6aeaba3ee584
child 6700 e04da46ee43c
--- a/project_files/HedgewarsMobile/Classes/GameInterfaceBridge.m	Sat Feb 11 05:13:56 2012 +0100
+++ b/project_files/HedgewarsMobile/Classes/GameInterfaceBridge.m	Sat Feb 11 05:48:33 2012 +0100
@@ -44,12 +44,12 @@
     [self.proto spawnThread:self.savePath withOptions:optionsOrNil];
 
     // add a black view hiding the background
-    CGRect theFrame = [[UIScreen mainScreen] bounds];
     UIWindow *thisWindow = [[HedgewarsAppDelegate sharedAppDelegate] uiwindow];
-    self.blackView = [[UIView alloc] initWithFrame:theFrame];
+    self.blackView = [[UIView alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
     self.blackView.opaque = YES;
     self.blackView.backgroundColor = [UIColor blackColor];
     self.blackView.alpha = 0;
+    self.blackView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
     [UIView beginAnimations:@"fade out" context:NULL];
     [UIView setAnimationDuration:1];
     self.blackView.alpha = 1;