diff options
Diffstat (limited to 'src/KingSystem/ksysDebugInput.cpp')
| -rw-r--r-- | src/KingSystem/ksysDebugInput.cpp | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/KingSystem/ksysDebugInput.cpp b/src/KingSystem/ksysDebugInput.cpp new file mode 100644 index 00000000..b1af1435 --- /dev/null +++ b/src/KingSystem/ksysDebugInput.cpp @@ -0,0 +1,17 @@ +#include "KingSystem/ksysDebugInput.h" +#include "KingSystem/System/VFR.h" + +namespace ksys { + +SEAD_SINGLETON_DISPOSER_IMPL(DebugInput) + +void DebugInput::update() { + if (mFlags.isOnBit(0)) { + mLastDelta += VFR::instance()->getDeltaTime(); + while (mLastDelta > 30.0) { + mLastDelta -= 30.0; + } + } +} + +} // namespace ksys |
