1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

Capitalise drive letters

Matches how other application like to display the drive letters
This commit is contained in:
Twarit
2019-03-10 00:36:54 +05:30
parent d41cd57595
commit 501fabe914

View File

@@ -394,7 +394,7 @@ DirAccessWindows::DirAccessWindows() {
if (mask & (1 << i)) { //DRIVE EXISTS
drives[drive_count] = 'a' + i;
drives[drive_count] = 'A' + i;
drive_count++;
}
}