--- a/project_files/HedgewarsMobile/Classes/GeneralSettingsViewController.m Mon Aug 22 23:56:25 2011 +0200
+++ b/project_files/HedgewarsMobile/Classes/GeneralSettingsViewController.m Tue Aug 23 03:46:17 2011 +0200
@@ -90,9 +90,6 @@
case 70: //enhanced graphics
[settings setObject:[NSNumber numberWithBool:theSwitch.on] forKey:@"enhanced"];
break;
- case 80: //nomultitasking
- [settings setObject:[NSNumber numberWithBool:theSwitch.on] forKey:@"multitasking"];
- break;
case 60: //classic menu
[settings setObject:[NSNumber numberWithBool:theSwitch.on] forKey:@"classic_menu"];
break;
@@ -240,12 +237,6 @@
switchContent.tag = 90;
break;
case 2:
- cell.textLabel.text = NSLocalizedString(@"Multitasking", @"");
- cell.detailTextLabel.text = NSLocalizedString(@"Disable it in case of issues when returing in game", @"");
- switchContent.on = [[settings objectForKey:@"multitasking"] boolValue];
- switchContent.tag = 80;
- break;
- case 3:
cell.textLabel.text = NSLocalizedString(@"Enanched Graphics", @"");
cell.detailTextLabel.text = NSLocalizedString(@"Beware that the game will consume more memory", @"");
switchContent.on = [[settings objectForKey:@"enhanced"] boolValue];
@@ -254,7 +245,7 @@
if (IS_NOT_POWERFUL(getModelType()))
switchContent.enabled = NO;
break;
- case 4:
+ case 3:
cell.textLabel.text = NSLocalizedString(@"Classic Ammo Menu", @"");
cell.detailTextLabel.text = NSLocalizedString(@"Select which style of ammo menu you prefer",@"");
switchContent.on = [[settings objectForKey:@"classic_menu"] boolValue];