summaryrefslogtreecommitdiff
path: root/src/window.cpp
diff options
context:
space:
mode:
authorJonathan Bradley <jcb@pikum.xyz>2023-11-29 21:03:15 -0500
committerJonathan Bradley <jcb@pikum.xyz>2023-11-29 21:03:15 -0500
commite111f78d519363a3d76237ff0a62dcbd5e53e3d6 (patch)
treeccb3860f1bc30cd21fc52f9e4ac3ba86a63ddcd3 /src/window.cpp
parent8142cbb3d1a926d5c8cb5c59a0ea259948c59ad1 (diff)
major events refactor to add second event callback type
Diffstat (limited to 'src/window.cpp')
-rw-r--r--src/window.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/window.cpp b/src/window.cpp
index 0827da5..2b75cdd 100644
--- a/src/window.cpp
+++ b/src/window.cpp
@@ -2432,7 +2432,7 @@ void RecordCommandBuffer(VkCommandBuffer commandBuffer, uint32_t imageIndex) {
ImGui_ImplGlfw_NewFrame();
ImGui::NewFrame();
- Event_Dispatch("RenderImGui");
+ Event_Dispatch<EventHandler>("RenderImGui");
ImGui::Render();
auto drawData = ImGui::GetDrawData();