Changes between Initial Version and Version 1 of Ticket #13601


Ignore:
Timestamp:
Jun 20, 2022, 6:16:54 PM (2 years ago)
Author:
antoniou79
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #13601 – Description

    initial v1  
    88I always got a crash (even after loading into the game to the first scene, but it seems that in that case more actions are needed to cause the crash), but not always after specific interaction so I don't have a deterministic sequence of actions. There's no error message on the console window. The game just exits.
    99
    10 ScummVM log does not offer any help either on this
     10ScummVM log does not offer any help either on this.
     11
     12Edit:
     13Trying to quickly debug this with Visual Studio, I got two different unhandled thrown exceptions.
     14- One was in graphics\surface.cpp, Surface::free() at the first line:
     15{{{
     16::free(pixels);
     17}}}
     18- The other (in a separate play session) was in the destructor of VorbisStream (in audio\decoders\vorbis.cpp):
     19{{{
     20VorbisStream::~VorbisStream() {
     21        ov_clear(&_ovFile);
     22}
     23}}}