Fixed Linux.

This commit is contained in:
Andrea Orru 2015-12-04 05:26:13 +00:00
parent dacf57b764
commit 4d0eee2019

View file

@ -128,7 +128,9 @@ void FileMenu::change_dir(string dir)
FileMenu::FileMenu()
{
change_dir(getwd(NULL));
char cwd[512];
change_dir(getcwd(cwd, 512));
}