Link CSWDataDolphin.cpp

Former-commit-id: cb48c96516
This commit is contained in:
Luke Street 2022-07-18 01:37:40 -04:00
parent c78d25aac6
commit 7ffab529b8
2 changed files with 2 additions and 2 deletions

View File

@ -432,7 +432,7 @@ KYOTO :=\
$(BUILD_DIR)/asm/Kyoto/Basics/CBasicsDolphin.o\ $(BUILD_DIR)/asm/Kyoto/Basics/CBasicsDolphin.o\
$(BUILD_DIR)/asm/Kyoto/Basics/CCallStackDolphin.o\ $(BUILD_DIR)/asm/Kyoto/Basics/CCallStackDolphin.o\
$(BUILD_DIR)/asm/Kyoto/Basics/COsContextDolphin.o\ $(BUILD_DIR)/asm/Kyoto/Basics/COsContextDolphin.o\
$(BUILD_DIR)/asm/Kyoto/Basics/CSWDataDolphin.o\ $(BUILD_DIR)/src/Kyoto/Basics/CSWDataDolphin.o\
$(BUILD_DIR)/asm/Kyoto/Basics/RAssertDolphin.o\ $(BUILD_DIR)/asm/Kyoto/Basics/RAssertDolphin.o\
$(BUILD_DIR)/asm/Kyoto/Animation/CAnimation.o\ $(BUILD_DIR)/asm/Kyoto/Animation/CAnimation.o\
$(BUILD_DIR)/asm/Kyoto/Animation/CAnimationManager.o\ $(BUILD_DIR)/asm/Kyoto/Animation/CAnimationManager.o\

View File

@ -4,7 +4,7 @@
bool CStopwatch::CSWData::Initialize() { bool CStopwatch::CSWData::Initialize() {
x0_timerFreq = OS_TIMER_CLOCK; x0_timerFreq = OS_TIMER_CLOCK;
x8_timerFreqO1M = x0_timerFreq / 1000000ull; x8_timerFreqO1M = x0_timerFreq / 1000000ll;
x10_timerPeriod = 1.f / static_cast<f32>(x0_timerFreq); x10_timerPeriod = 1.f / static_cast<f32>(x0_timerFreq);
return true; return true;
} }