Merge pull request #275 from Attractadore/patch-1

Fix windows.h not found when cross compiling on Linux
diff --git a/src/VmaUsage.h b/src/VmaUsage.h
index 5bff938..0140ce4 100644
--- a/src/VmaUsage.h
+++ b/src/VmaUsage.h
@@ -33,7 +33,7 @@
     #define WIN32_LEAN_AND_MEAN
 #endif
 
-#include <Windows.h>
+#include <windows.h>
 #if !defined(VK_USE_PLATFORM_WIN32_KHR)
     #define VK_USE_PLATFORM_WIN32_KHR
 #endif // #if !defined(VK_USE_PLATFORM_WIN32_KHR)