equal
deleted
inserted
replaced
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; |