cocoaTouch/VoicesViewController.m
changeset 3364 e5403e2bf02c
parent 3361 cfc6cd502f85
child 3490 016b3172b645
equal deleted inserted replaced
3363:bcd6d76db4f7 3364:e5403e2bf02c
    24 #pragma mark View lifecycle
    24 #pragma mark View lifecycle
    25 - (void)viewDidLoad {
    25 - (void)viewDidLoad {
    26     [super viewDidLoad];
    26     [super viewDidLoad];
    27     srandom(time(NULL));
    27     srandom(time(NULL));
    28 
    28 
    29     openal_init(1, 1);
    29     openal_init(1);
    30     voiceBeingPlayed = -1;
    30     voiceBeingPlayed = -1;
    31 
    31 
    32     // load all the voices names and store them into voiceArray
    32     // load all the voices names and store them into voiceArray
    33     NSArray *array = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:VOICES_DIRECTORY() error:NULL];
    33     NSArray *array = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:VOICES_DIRECTORY() error:NULL];
    34     self.voiceArray = array;
    34     self.voiceArray = array;