mirror of
https://github.com/zeldaret/tp
synced 2026-09-03 02:03:55 -04:00
dolphin lib work (#237)
* getLayerNo_common_common finally matched * dolphin ai / ar / card work from prime decomp * work on dolphin dvd / dsp / db * more dolphin os work * si work * remove asm * build fix
This commit is contained in:
@@ -954,7 +954,9 @@ inline void dComIfGs_onEventBit(u16 i_flag) {
|
||||
g_dComIfG_gameInfo.info.getSavedata().getEvent().onEventBit(i_flag);
|
||||
}
|
||||
|
||||
inline BOOL i_dComIfGs_isEventBit(u16 i_flag) {
|
||||
// debug rom says `i_flag` is not const, but it's needed to match in some places?
|
||||
// missing some other inline maybe?
|
||||
inline BOOL i_dComIfGs_isEventBit(const u16 i_flag) {
|
||||
return g_dComIfG_gameInfo.info.getEvent().isEventBit(i_flag);
|
||||
}
|
||||
|
||||
@@ -2566,7 +2568,7 @@ inline int dComIfG_getTimerNowTimeMs() {
|
||||
return g_dComIfG_gameInfo.play.getTimerNowTimeMs();
|
||||
}
|
||||
|
||||
inline int dComIfG_setTimerNowTimeMs(int time) {
|
||||
inline void dComIfG_setTimerNowTimeMs(int time) {
|
||||
g_dComIfG_gameInfo.play.setTimerNowTimeMs(time);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user