summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorrobojumper <robojumper@gmail.com>2025-08-15 10:07:04 +0200
committerGitHub <noreply@github.com>2025-08-15 10:07:04 +0200
commit897de53b2dd1c5a315a995db768b083b0267ff5d (patch)
tree9dc877e2539261c147b9ca447d18941c83762794 /include
parent6632b14cd74b783a1bc945913863c3a9a052f1d1 (diff)
parent807a7a9d021877954e28f621f38bb58949c21806 (diff)
Merge pull request #231 from robojumper/thpplayer-splits
THPPlayer splits and symbols
Diffstat (limited to 'include')
-rw-r--r--include/d/d_thp_player.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/include/d/d_thp_player.h b/include/d/d_thp_player.h
index 8d527d40..2ef99a1a 100644
--- a/include/d/d_thp_player.h
+++ b/include/d/d_thp_player.h
@@ -9,7 +9,7 @@
#include "sized_string.h"
class ThpVideoScreen : public m2d::Base_c {
- public:
+public:
ThpVideoScreen() {
mEfbWidth = 0;
mEfbHeight = 0;
@@ -28,6 +28,7 @@ class ThpVideoScreen : public m2d::Base_c {
mVideoHeight = height;
}
+private:
/* 0x10 */ s32 mEfbWidth;
/* 0x14 */ s32 mEfbHeight;
/* 0x18 */ s32 mVideoWidth;
@@ -50,18 +51,19 @@ public:
s32 play();
s32 destroy();
void open();
- void setupFile(char* filename, s32 loadAllAtOnce);
+ void setupFile(char *filename, s32 loadAllAtOnce);
- /* 0x68 */ mDvd_callback_c* mDvdCallback;
+private:
+ /* 0x68 */ mDvd_callback_c *mDvdCallback;
/* 0x6C */ SizedString<0x20> mFilename;
-
+
/* 0x8C */ THPVideoInfo mVideoComponent;
/* 0x98 */ THPAudioInfo mAudioComponent;
/* 0xA8 */ s32 mLoadAllAtOnce;
/* 0xAC */ s32 mFilenameSet;
/* 0xB0 */ s32 mSetupDone;
/* 0xB4 */ s32 isPlaying;
- /* 0xB8 */ u8* mBuffer;
+ /* 0xB8 */ u8 *mBuffer;
/* 0xBC */ ThpVideoScreen mScreen;
/* 0xDC */ s32 mSpecialType;
};