mirror of
https://github.com/godotengine/godot.git
synced 2025-11-02 22:51:08 +00:00
small unicode fixes
This commit is contained in:
parent
ad634876b5
commit
7f5b744b92
2 changed files with 8 additions and 7 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue