mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-24 21:21:05 +00:00
FULLPIPE: Implement ModalCredits::update()
This commit is contained in:
parent
c2387dbf3c
commit
fde3e7fc12
@ -726,8 +726,6 @@ bool ModalCredits::init(int counterdiff) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void ModalCredits::update() {
|
void ModalCredits::update() {
|
||||||
warning("STUB: ModalCredits::update()");
|
|
||||||
|
|
||||||
if (_fadeOut) {
|
if (_fadeOut) {
|
||||||
if (_fadeIn) {
|
if (_fadeIn) {
|
||||||
_sceneTitles->draw();
|
_sceneTitles->draw();
|
||||||
@ -735,14 +733,14 @@ void ModalCredits::update() {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
} else if (_fadeIn) {
|
} else if (_fadeIn) {
|
||||||
//sceneFade(virt, this->_sceneTitles, 1); // TODO
|
g_fp->sceneFade(_sceneTitles, true);
|
||||||
_fadeOut = 1;
|
_fadeOut = 1;
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (_fadeOut) {
|
if (_fadeOut) {
|
||||||
//sceneFade(virt, this->_sceneTitles, 0); // TODO
|
g_fp->sceneFade(_sceneTitles, false);
|
||||||
_fadeOut = 0;
|
_fadeOut = 0;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user