From 5a69a89d7138f36b8e6d14a3c2252aa210241111 Mon Sep 17 00:00:00 2001 From: Christoph Haag Date: Wed, 2 Mar 2016 13:26:54 +0100 Subject: [PATCH] fix handle_event -> handleEvent in shadowmapping --- shadowmapping/shadowmapping.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shadowmapping/shadowmapping.cpp b/shadowmapping/shadowmapping.cpp index e11ec88f..bc907cec 100644 --- a/shadowmapping/shadowmapping.cpp +++ b/shadowmapping/shadowmapping.cpp @@ -1166,11 +1166,11 @@ LRESULT CALLBACK WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam) #else -static void handle_event(const xcb_generic_event_t *event) +static void handleEvent(const xcb_generic_event_t *event) { if (vulkanExample != NULL) { - vulkanExample->handle_event(event); + vulkanExample->handleEvent(event); } } #endif