mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-22 10:17:22 +00:00
PINK: remove extended initializer lists
This commit is contained in:
parent
2bb2834782
commit
d7f09d4c3c
@ -85,7 +85,7 @@ const Graphics::Surface *CelDecoder::getCurrentFrame() {
|
||||
Common::Point CelDecoder::getCenter() {
|
||||
CelVideoTrack *track = (CelVideoTrack*) getTrack(0);
|
||||
if (!track)
|
||||
return {0,0};
|
||||
return Common::Point(0, 0);
|
||||
return track->getCenter();
|
||||
}
|
||||
|
||||
|
@ -67,7 +67,7 @@ SequenceContext::SequenceContext(Sequence *sequence, Sequencer *sequencer)
|
||||
}
|
||||
if (!found) {
|
||||
debug(items[i]->getActor().c_str());
|
||||
_states.push_back({items[i]->getActor()});
|
||||
_states.push_back(SequenceActorState(items[i]->getActor()));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user