SCI: Renamed lots of classes related to song iterators; allocate song iterators via new/delete instead of malloc/free

svn-id: r39148
This commit is contained in:
Max Horn 2009-03-06 07:25:06 +00:00
parent 0c681f85a4
commit 5e2ee01b39
15 changed files with 292 additions and 289 deletions

View file

@ -2412,7 +2412,7 @@ int c_simkey(EngineState *s) {
static int c_is_sample(EngineState *s) {
Resource *song = s->resmgr->findResource(kResourceTypeSound, cmd_params[0].val, 0);
song_iterator_t *songit;
SongIterator *songit;
Audio::AudioStream *data;
if (!song) {