Skip to content
Closed

dMain #145

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion config/RSPE01_01/symbols.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6853,7 +6853,7 @@ setDimming__11RPSysSystemFi = .text:0x801831E8; // type:function size:0x8
systemShutDown__11RPSysSystemFv = .text:0x801831F0; // type:function size:0xD8
fn_801832C8 = .text:0x801832C8; // type:function size:0x28
fn_801832F0 = .text:0x801832F0; // type:function size:0x18
startLoadCount__11RPSysSystemFP11RPSysSystem = .text:0x80183308; // type:function size:0xC
startLoadCount__11RPSysSystemFv = .text:0x80183308; // type:function size:0xC
fn_80183314 = .text:0x80183314; // type:function size:0xA0
fn_801833B4 = .text:0x801833B4; // type:function size:0xBC
getCalendarTime16__11RPSysSystemFv = .text:0x80183470; // type:function size:0x4C
Expand Down
6 changes: 3 additions & 3 deletions include/Pack/RPAudio/RPSndMoveParam.h
Original file line number Diff line number Diff line change
Expand Up @@ -132,11 +132,11 @@ class RPSndMoveParam : public RPSndMoveParamLink, public RPSndMoveValueF32 {

private:
//! Sound handle
nw4r::snd::SoundHandle& mrHandle; // at 0x28
nw4r::snd::SoundHandle& mrHandle; // at 0x24
//! Sound parameter category
ParamCategory mCategory; // at 0x2C
ParamCategory mCategory; // at 0x28
//! Sequence sound track flags
u32 mTrackFlags; // at 0x30
u32 mTrackFlags; // at 0x2C
};

/******************************************************************************
Expand Down
1 change: 1 addition & 0 deletions include/Pack/RPKernel/RPSysHomeMenuMgr.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#ifndef RP_KERNEL_HOME_MENU_MGR_H
#define RP_KERNEL_HOME_MENU_MGR_H
#include <Pack/types_pack.h>
#include <Pack/RPSystem/RPSysProjectLocal.h>

#include <Pack/RPSingleton.h>
#include <Pack/RPSystem/RPSysProjectLocal.h>
Expand Down
5 changes: 4 additions & 1 deletion include/Pack/RPKernel/RPSysSystem.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

#include <Pack/RPSystem/RPSysRenderMode.h>
#include <Pack/RPSystem/RPSysSceneCreator.h>
#include <Pack/RPSystem/RPSysRenderMode.h>

#include <egg/core.h>

Expand Down Expand Up @@ -266,7 +267,9 @@ class RPSysSystem {
/**
* @brief Gets the thread for asynchronous disc operations
*/
EGG::TaskThread* getDvdThread();
EGG::TaskThread* getDvdThread() {
return mpDvdThread;
}
/**
* @brief Gets the thread for asynchronous WiiConnect24 operations
*/
Expand Down
Loading