summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorJuan Linietsky <reduzio@gmail.com>2015-05-04 13:12:05 -0300
committerJuan Linietsky <reduzio@gmail.com>2015-05-04 13:12:05 -0300
commit7f5b744b92256e42aa3c700ee88d8318732935c6 (patch)
treea8adec6d7cdca1a05b6aa4f2451d08ce8a24fea0 /drivers
parentad634876b5b7d775f6d490cf7f874c6aae058a28 (diff)
small unicode fixes
Diffstat (limited to 'drivers')
-rw-r--r--drivers/windows/dir_access_windows.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/windows/dir_access_windows.cpp b/drivers/windows/dir_access_windows.cpp
index 4c265a1ab2..53dd3f49db 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 {