SHERLOCK: Fix crash when moving crates
This commit is contained in:
parent
c5d5694883
commit
32d46dc00a
2 changed files with 10 additions and 0 deletions
|
@ -26,6 +26,14 @@
|
||||||
|
|
||||||
namespace Sherlock {
|
namespace Sherlock {
|
||||||
|
|
||||||
|
SequenceEntry::SequenceEntry() {
|
||||||
|
_objNum = 0;
|
||||||
|
_frameNumber = 0;
|
||||||
|
_seqTo = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*----------------------------------------------------------------*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Load the data for a single statement within a talk file
|
* Load the data for a single statement within a talk file
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -77,6 +77,8 @@ struct SequenceEntry {
|
||||||
Common::Array<byte> _sequences;
|
Common::Array<byte> _sequences;
|
||||||
int _frameNumber;
|
int _frameNumber;
|
||||||
int _seqTo;
|
int _seqTo;
|
||||||
|
|
||||||
|
SequenceEntry();
|
||||||
};
|
};
|
||||||
|
|
||||||
struct ScriptStackEntry {
|
struct ScriptStackEntry {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue