diff options
| author | Brian Savage <savage13@gmail.com> | 2021-12-31 09:39:42 -0500 |
|---|---|---|
| committer | Léo Lam <leo@leolam.fr> | 2021-12-31 19:16:24 +0100 |
| commit | 0542fa53b51af9359cbdf7c58df031edf4a17b31 (patch) | |
| tree | 71509285597b61b6d86c2663ebc479008cf9540e /src/KingSystem/ksysDebugInput.cpp | |
| parent | 0e1500b6f849e1a808d1a6d5923439907a120c38 (diff) | |
Add ksysDebugInput Singleton
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 |
