diff options
| author | Juan Linietsky | 2015-05-04 13:12:05 -0300 |
|---|---|---|
| committer | Juan Linietsky | 2015-05-04 13:12:05 -0300 |
| commit | 7f5b744b92256e42aa3c700ee88d8318732935c6 (patch) | |
| tree | a8adec6d7cdca1a05b6aa4f2451d08ce8a24fea0 /drivers/windows | |
| parent | ad634876b5b7d775f6d490cf7f874c6aae058a28 (diff) | |
| download | godot-7f5b744b92256e42aa3c700ee88d8318732935c6.tar.gz godot-7f5b744b92256e42aa3c700ee88d8318732935c6.tar.zst godot-7f5b744b92256e42aa3c700ee88d8318732935c6.zip | |
small unicode fixes
Diffstat (limited to 'drivers/windows')
| -rw-r--r-- | drivers/windows/dir_access_windows.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/windows/dir_access_windows.cpp b/drivers/windows/dir_access_windows.cpp index 4c265a1ab..53dd3f49d 100644 --- a/drivers/windows/dir_access_windows.cpp +++ b/drivers/windows/dir_access_windows.cpp @@ -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 { |
