--- a/project_files/HedgewarsMobile/Classes/SDL_uikitappdelegate.m Thu Sep 23 00:09:16 2010 +0200
+++ b/project_files/HedgewarsMobile/Classes/SDL_uikitappdelegate.m Thu Sep 23 01:29:20 2010 +0200
@@ -81,7 +81,7 @@
-(void) startSDLgame:(NSDictionary *)gameDictionary {
UIWindow *aWin = [[[UIApplication sharedApplication] windows] objectAtIndex:0];
- UIView *blackView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, aWin.frame.size.height, aWin.frame.size.width)];
+ UIView *blackView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, aWin.frame.size.width, aWin.frame.size.height)];
blackView.opaque = YES;
blackView.backgroundColor = [UIColor blackColor];
[aWin addSubview:blackView];