mirror of
https://github.com/minetest/minetest.git
synced 2024-11-09 01:03:46 +01:00
Fix old world search path for non-run-in-place build
This commit is contained in:
parent
db5db587be
commit
2e0c0e9d89
@ -130,8 +130,12 @@ std::vector<WorldSpec> getAvailableWorlds()
|
||||
}
|
||||
// Check old world location
|
||||
do{
|
||||
#ifdef RUN_IN_PLACE
|
||||
std::string fullpath = porting::path_user + DIR_DELIM + ".."
|
||||
+ DIR_DELIM + "world";
|
||||
#else
|
||||
std::string fullpath = porting::path_user + DIR_DELIM + "world";
|
||||
#endif
|
||||
if(!fs::PathExists(fullpath))
|
||||
break;
|
||||
std::string name = "Old World";
|
||||
|
Loading…
Reference in New Issue
Block a user