summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
author0scar <qgt268@alumni.ku.dk>2024-02-06 13:54:12 +0000
committer0scar <qgt268@alumni.ku.dk>2024-02-06 13:54:12 +0000
commitec1dc30e4c5c21ad45692223a2ae5ce5e5b536ff (patch)
tree8c66bbc791b0be2d7a4e79586167ce731dc252a8 /src/core
parent26a1339ce66a5e9ecc5d6e8b15b3bb105cfac7d6 (diff)
Fix hotreload inclusion
Diffstat (limited to 'src/core')
-rw-r--r--src/core/include/engine/core/state.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/include/engine/core/state.h b/src/core/include/engine/core/state.h
index af94560..cdba235 100644
--- a/src/core/include/engine/core/state.h
+++ b/src/core/include/engine/core/state.h
@@ -21,7 +21,7 @@ StateType State_update(StateType type, memory* mem);
/* Reloads shared object file associated with state */
#ifdef DAW_BUILD_HOTRELOAD
-#include <engine/input.h>
+#include <engine/ctrl/input.h>
bool State_reload(StateType type, i_ctx** ctx, usize ctx_len);
#else