window: change case of Dbt.h inclusion

Windows should have no issue with this change, as it addresses
files in a case-insensitve manner. Said header is installed in
lowercase on mingw-w64, and won't build since commit
22f1b85515

Signed-off-by: Marty E. Plummer <hanetzer@startmail.com>
This commit is contained in:
Marty E. Plummer 2018-03-15 03:44:43 -05:00 committed by Lukas Dürrenberger
parent 49d611ee69
commit 5c20c67469

View File

@ -39,7 +39,10 @@
#include <GL/gl.h> #include <GL/gl.h>
#include <SFML/System/Err.hpp> #include <SFML/System/Err.hpp>
#include <SFML/System/Utf.hpp> #include <SFML/System/Utf.hpp>
#include <Dbt.h> // dbt.h is lowercase here, as a cross-compile on linux with mingw-w64
// expects lowercase, and a native compile on windows, whether via msvc
// or mingw-w64 addresses files in a case insensitive manner.
#include <dbt.h>
#include <vector> #include <vector>
#include <cstring> #include <cstring>