[Scummvm-tracker] [ScummVM :: Bugs] #15115: BACKENDS: PSP Vita - Sanitarium not starting (black screen)
ScummVM :: Bugs
trac at scummvm.org
Mon Jul 8 16:56:50 UTC 2024
#15115: BACKENDS: PSP Vita - Sanitarium not starting (black screen)
--------------------+-----------------------------
Reporter: KeePach | Owner: (none)
Type: defect | Status: new
Priority: normal | Component: Port: PSP Vita
Version: | Resolution:
Keywords: | Game: Sanitarium
--------------------+-----------------------------
Comment (by rsn8887):
I made some bizarre progress on Asylum engine on Vita, which currently
skips intro videos on the demo and shows a black screen afterwards: I can
get the intro video to play in the demo, when I change
{{{
// Send update event to our event handler
AsylumEvent updateEvt = AsylumEvent(EVENT_ASYLUM_UPDATE);
if (_handler)
_handler->handleEvent(updateEvt);
}}}
to
{{{
// Send update event to our event handler
AsylumEvent updateEvt = AsylumEvent(EVENT_ASYLUM_UPDATE);
if (_handler && (_handler != _video))
_handler->handleEvent(updateEvt);
}}}
But _video->handleEvent() ignores events of type EVENT_ASYLUM_UPDATE, so
this change shouldn't do anything.
I think this bug is due to undefined behavior somewhere.
--
Ticket URL: <https://bugs.scummvm.org/ticket/15115#comment:2>
ScummVM :: Bugs <https://bugs.scummvm.org>
ScummVM
More information about the Scummvm-tracker
mailing list