Changes between Initial Version and Version 1 of Ticket #13601
- Timestamp:
- Jun 20, 2022, 6:16:54 PM (2 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #13601 – Description
initial v1 8 8 I 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. 9 9 10 ScummVM log does not offer any help either on this 10 ScummVM log does not offer any help either on this. 11 12 Edit: 13 Trying 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 {{{ 20 VorbisStream::~VorbisStream() { 21 ov_clear(&_ovFile); 22 } 23 }}}