fix handle_event -> handleEvent in shadowmapping

This commit is contained in:
Christoph Haag 2016-03-02 13:26:54 +01:00
parent c2306108c4
commit 5a69a89d71

View file

@ -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