mirror of
https://github.com/isledecomp/isle.git
synced 2026-02-28 15:07:38 +00:00
MxDSAction has a setAtomId method
This commit is contained in:
parent
5eb8b43569
commit
e07bfce936
@ -595,7 +595,7 @@ void Isle::tick(BOOL sleepIfNotNextFrame)
|
||||
return;
|
||||
}
|
||||
|
||||
ds.m_atomId = stream->atom;
|
||||
ds.setAtomId(stream->atom);
|
||||
ds.m_unk24 = 0xFFFF;
|
||||
ds.m_unk1c = 0;
|
||||
VideoManager()->EnableFullScreenMovie(TRUE, TRUE);
|
||||
@ -604,7 +604,7 @@ void Isle::tick(BOOL sleepIfNotNextFrame)
|
||||
return;
|
||||
}
|
||||
} else {
|
||||
ds.m_atomId = stream->atom;
|
||||
ds.setAtomId(stream->atom);
|
||||
ds.m_unk24 = 0xFFFF;
|
||||
ds.m_unk1c = 0;
|
||||
if (Start(&ds) != SUCCESS) {
|
||||
|
||||
@ -47,6 +47,10 @@ class MxDSAction
|
||||
int m_unk8c;
|
||||
int m_unk90;
|
||||
|
||||
void setAtomId(MxAtomId &atomId) {
|
||||
this->m_atomId = atomId;
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
#endif // MXDSACTION_H
|
||||
|
||||
Loading…
Reference in New Issue
Block a user