Fixed game_config::path setting for windows

This commit is contained in:
Pauli Nieminen 2008-08-29 16:16:19 +00:00
parent ed2a9491b8
commit 025257a984

View file

@ -416,7 +416,7 @@ std::string get_exe_dir()
buf[path_size] = 0;
return std::string(dirname(buf));
#else
return std::string();
return get_cwd();
#endif
}