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

small unicode fixes

This commit is contained in:
Juan Linietsky
2015-05-04 13:12:05 -03:00
parent ad634876b5
commit 7f5b744b92
2 changed files with 8 additions and 7 deletions

View File

@@ -197,7 +197,7 @@ Error DirAccessWindows::change_dir(String p_dir) {
if (worked) {
GetCurrentDirectoryW(2048,real_current_dir_name);
current_dir=real_current_dir_name; // TODO, utf8 parser
current_dir=real_current_dir_name;
current_dir=current_dir.replace("\\","/");
} //else {
@@ -218,7 +218,7 @@ Error DirAccessWindows::change_dir(String p_dir) {
if (worked) {
GetCurrentDirectoryA(2048,real_current_dir_name);
current_dir=real_current_dir_name; // TODO, utf8 parser
current_dir=real_current_dir_name;
current_dir=current_dir.replace("\\","/");
}// else {