mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-08 17:04:55 +00:00
Numerous uninitialized memory fixes
This commit is contained in:
@@ -129,10 +129,10 @@ public:
|
||||
static const CArchMsgParmVoidPtr& GetParmDeleteIOWin(const CArchitectureMessage& msg) {
|
||||
return *msg.GetParm<CArchMsgParmVoidPtr>();
|
||||
}
|
||||
static CArchitectureMessage CreateFrameBegin(EArchMsgTarget target, const s32& a) {
|
||||
static CArchitectureMessage CreateFrameBegin(EArchMsgTarget target, s32 a) {
|
||||
return CArchitectureMessage(target, EArchMsgType::FrameBegin, std::make_shared<CArchMsgParmInt32>(a));
|
||||
}
|
||||
static CArchitectureMessage CreateFrameEnd(EArchMsgTarget target, const s32& a) {
|
||||
static CArchitectureMessage CreateFrameEnd(EArchMsgTarget target, s32 a) {
|
||||
return CArchitectureMessage(target, EArchMsgType::FrameEnd, std::make_shared<CArchMsgParmInt32>(a));
|
||||
}
|
||||
/* URDE Messages */
|
||||
|
||||
Reference in New Issue
Block a user