2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-18 17:25:23 +00:00

Fix missing CMoviePlayer::Initialize call

This commit is contained in:
2022-02-27 12:08:24 -05:00
parent ad1453ac08
commit 1583248896
3 changed files with 10 additions and 3 deletions

View File

@@ -41,7 +41,10 @@ static float SfxVolume = 1.f;
void CMoviePlayer::Initialize() { TjHandle = tjInitDecompress(); }
void CMoviePlayer::Shutdown() { tjDestroy(TjHandle); }
void CMoviePlayer::Shutdown() {
tjDestroy(TjHandle);
TjHandle = nullptr;
}
void CMoviePlayer::THPHeader::swapBig() {
magic = SBig(magic);