Fix compile error on windows which occured if HAVE_CONFIG_H is defined.

This commit is contained in:
Sergey Popov 2008-06-09 14:14:18 +00:00
parent abc184d9a9
commit 74e545f178

View file

@ -271,7 +271,7 @@ std::string get_intl_dir()
{
#ifdef _WIN32
return get_cwd() + "/translations";
#endif
#else
#ifdef USE_INTERNAL_DATA
return get_cwd() + "/" LOCALEDIR;
@ -284,6 +284,7 @@ std::string get_intl_dir()
#endif
return res;
#endif
}
std::string get_screenshot_dir()