From 7f5b744b92256e42aa3c700ee88d8318732935c6 Mon Sep 17 00:00:00 2001 From: Juan Linietsky Date: Mon, 4 May 2015 13:12:05 -0300 Subject: small unicode fixes --- drivers/windows/dir_access_windows.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'drivers/windows/dir_access_windows.cpp') 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 { -- cgit v1.2.3