Skip to content

Commit

Permalink
Merge pull request godotengine#118 from Terseus/fix-19_non-ascii-paths
Browse files Browse the repository at this point in the history
Fix godotengine#19 Can't open project (with non-ASCII path)
  • Loading branch information
reduz committed Feb 18, 2014
2 parents df189aa + 666aeac commit f0e6ed1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ Error Main::setup(const char *execpath,int argc, char *argv[],bool p_second_phas

for(int i=0;i<argc;i++) {

args.push_back(argv[i]);
args.push_back(String::utf8(argv[i]));
}

List<String>::Element *I=args.front();
Expand Down

0 comments on commit f0e6ed1

Please sign in to comment.