now it's possible to select the scheme file in the ifrontendfix a type about loading an image (iphone file system IS case senstive)
add rotation for iphone build too
make the ifrontend work again with 3.0 sdk
reworked openalbridge following most of an old implementation by Smaxx and making it more modular -- now sources are limited but the memory extension and cleanup is todo
nil'd many variables in engine that were causing intialization problems
//
// DetailViewController.h
// HedgewarsMobile
//
// Created by Vittorio on 27/03/10.
// Copyright 2010 __MyCompanyName__. All rights reserved.
//
#import <UIKit/UIKit.h>
@class GeneralSettingsViewController;
@class TeamSettingsViewController;
@class WeaponSettingsViewController;
@class SchemeSettingsViewController;
@interface DetailViewController : UITableViewController
#if __IPHONE_3_2
<UISplitViewControllerDelegate, UIPopoverControllerDelegate>
#endif
{
NSArray *controllerNames;
GeneralSettingsViewController *generalSettingsViewController;
TeamSettingsViewController *teamSettingsViewController;
WeaponSettingsViewController *weaponSettingsViewController;
SchemeSettingsViewController *schemeSettingsViewController;
UIPopoverController *popoverController;
}
// used in iphone version
-(IBAction) dismissSplitView;
@property (nonatomic, retain) NSArray *controllerNames;
@property (nonatomic,retain) UIPopoverController *popoverController;
@end