SCI: Fixed regression in new_fast_forward_iterator
svn-id: r39215
This commit is contained in:
parent
efa5493b2d
commit
7bfab75a08
2 changed files with 1 additions and 3 deletions
|
@ -1227,7 +1227,6 @@ public:
|
|||
flags = 0;
|
||||
}
|
||||
|
||||
SongIterator *makeClone() { return 0; }
|
||||
int nextCommand(byte *buf, int *result);
|
||||
Audio::AudioStream *getAudioStream() { return NULL; }
|
||||
SongIterator *handleMessage(SongIteratorMessage msg);
|
||||
|
@ -1342,7 +1341,7 @@ SongIterator *new_fast_forward_iterator(SongIterator *capsit, int delta) {
|
|||
if (capsit == NULL)
|
||||
return NULL;
|
||||
|
||||
FastForwardSongIterator *it = new FastForwardSongIterator();
|
||||
FastForwardSongIterator *it = new FastForwardSongIterator(capsit, delta);
|
||||
return it;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue