diff options
author | Hein-Pieter van Braam <hp@tmm.cx> | 2019-01-26 16:27:10 +0100 |
---|---|---|
committer | Hein-Pieter van Braam <hp@tmm.cx> | 2019-01-26 16:27:10 +0100 |
commit | a8510331c0115eeee2d6ac0a4acbeb5d4df833b3 (patch) | |
tree | 583369e3772b8bcebdce2bfe14ea0c8f92b8eb9d /drivers | |
parent | 18c3ed245ae990c61f68edddab627c5719c433c7 (diff) | |
download | redot-engine-a8510331c0115eeee2d6ac0a4acbeb5d4df833b3.tar.gz |
Fix compilation on UWP
It appears that MSVC and Mingw disagree about what conversions are legal
here. We just use the 'wide' version of the call and use our native
CharType instead of TCHAR.
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/windows/dir_access_windows.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/windows/dir_access_windows.cpp b/drivers/windows/dir_access_windows.cpp index c32e063736..8ac4e53c65 100644 --- a/drivers/windows/dir_access_windows.cpp +++ b/drivers/windows/dir_access_windows.cpp @@ -354,13 +354,13 @@ String DirAccessWindows::get_filesystem_type() const { String unit = path.substr(0,unit_end+1) + "\\"; print_line("unit: "+unit); - TCHAR szVolumeName[100] = ""; - TCHAR szFileSystemName[10] = ""; + WCHAR szVolumeName[100]; + WCHAR szFileSystemName[10]; DWORD dwSerialNumber = 0; DWORD dwMaxFileNameLength = 0; DWORD dwFileSystemFlags = 0; - if(::GetVolumeInformation(unit.utf8().get_data(), + if(::GetVolumeInformationW(unit.c_str(), szVolumeName, sizeof(szVolumeName), &dwSerialNumber, |