Match but don't link CAudioStateWin

Former-commit-id: 2313ccfa1d
This commit is contained in:
Henrique Gemignani Passos Lima
2022-10-14 02:31:53 +03:00
parent e869267b6c
commit 18de83f2e4
6 changed files with 52 additions and 8 deletions

View File

@@ -41,6 +41,7 @@ public:
void SetFileIdx(u32 idx) { x20c_saveIdx = idx; }
void SetCardSerial(u64 serial) { x210_cardSerial = serial; }
u64 GetCardSerial() const { return x210_cardSerial; }
rstl::rc_ptr< CWorldTransManager >& WorldTransitionManager(); // { return x9c_transManager.GetPtr(); }
struct GameFileStateInfo {
double x0_playTime;

View File

@@ -5,8 +5,14 @@
class CWorldTransManager {
public:
enum ETransType { kTT_Disabled, kTT_Enabled, kTT_Text };
ETransType GetTransType() const { return x30_transType; }
private:
uchar pad[0x48];
uchar x0_pad[0x30];
ETransType x30_transType;
uchar x34_pad[0x14];
};
#endif // _CWORLDTRANSMANAGER