--- a/project_files/HedgewarsMobile/Classes/GameConfigViewController.m Thu May 10 22:15:31 2012 +0200
+++ b/project_files/HedgewarsMobile/Classes/GameConfigViewController.m Thu May 10 23:21:56 2012 +0200
@@ -21,12 +21,11 @@
#import "MapConfigViewController.h"
#import "TeamConfigViewController.h"
#import "SchemeWeaponConfigViewController.h"
-#import "HelpPageLobbyViewController.h"
#import "GameInterfaceBridge.h"
@implementation GameConfigViewController
-@synthesize imgContainer, helpPage, titleImage, sliderBackground,
+@synthesize imgContainer, titleImage, sliderBackground, //helpPage,
mapConfigViewController, teamConfigViewController, schemeWeaponConfigViewController;
-(BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
@@ -67,6 +66,7 @@
break;
case 2:
[[AudioManagerController mainManager] playClickSound];
+ /*
if (self.helpPage == nil)
self.helpPage = [[HelpPageLobbyViewController alloc] initWithNibName:@"HelpPageLobbyViewController-iPad" bundle:nil];
self.helpPage.view.alpha = 0;
@@ -74,6 +74,7 @@
[UIView beginAnimations:@"helplobby" context:NULL];
self.helpPage.view.alpha = 1;
[UIView commitAnimations];
+ */
break;
default:
DLog(@"Nope");
@@ -103,6 +104,7 @@
[self.view bringSubviewToFront:schemeWeaponConfigViewController.view];
break;
case 3:
+ /*
if (helpPage == nil) {
helpPage = [[HelpPageLobbyViewController alloc] initWithNibName:@"HelpPageLobbyViewController-iPhone" bundle:nil];
[self.view addSubview:helpPage.view];
@@ -110,6 +112,7 @@
// this message is compulsory otherwise the table won't be loaded at all
[helpPage viewWillAppear:NO];
[self.view bringSubviewToFront:helpPage.view];
+ */
break;
default:
DLog(@"Nope");
@@ -394,8 +397,8 @@
self.teamConfigViewController = nil;
if (self.schemeWeaponConfigViewController.view.superview == nil)
self.schemeWeaponConfigViewController = nil;
- if (self.helpPage.view.superview == nil)
- self.helpPage = nil;
+ //if (self.helpPage.view.superview == nil)
+ // self.helpPage = nil;
MSG_MEMCLEAN();
[super didReceiveMemoryWarning];
}
@@ -407,7 +410,7 @@
self.schemeWeaponConfigViewController = nil;
self.teamConfigViewController = nil;
self.mapConfigViewController = nil;
- self.helpPage = nil;
+ //self.helpPage = nil;
MSG_DIDUNLOAD();
[super viewDidUnload];
}
@@ -419,7 +422,7 @@
releaseAndNil(schemeWeaponConfigViewController);
releaseAndNil(teamConfigViewController);
releaseAndNil(mapConfigViewController);
- releaseAndNil(helpPage);
+ //releaseAndNil(helpPage);
[super dealloc];
}