diff --git a/openVulkanoCpp/Base/Logger.cpp b/openVulkanoCpp/Base/Logger.cpp index 45fb314..f02208c 100644 --- a/openVulkanoCpp/Base/Logger.cpp +++ b/openVulkanoCpp/Base/Logger.cpp @@ -87,10 +87,10 @@ namespace OpenVulkano LONG WINAPI win32ExceptionHandler(EXCEPTION_POINTERS *exceptionPointers) { // NOTE(vb): We can report some of the exceptionPointers fields to the user... But this is for windows only - if(!didLoggerShutdown) + if(!DidLoggerShutdown) spdlog::error("An exception occured"); spdlog::shutdown(); - didLoggerShutdown = true; + DidLoggerShutdown = true; return EXCEPTION_CONTINUE_SEARCH; } #endif