Skip to content
Snippets Groups Projects
Commit 9aaf67eb authored by Kodexky's avatar Kodexky Committed by Craig Robbins
Browse files

Fix Android main menu crash, and user data directory check.

parent 1c9f05d7
No related branches found
No related tags found
No related merge requests found
......@@ -97,7 +97,7 @@ local function init_globals()
local found_singleplayerworld = false
for world in pairs(world_list) do
for i,world in pairs(world_list) do
if world.name == "singleplayerworld" then
found_singleplayerworld = true
gamedata.worldindex = i
......@@ -110,10 +110,10 @@ local function init_globals()
local world_list = core.get_worlds()
for world in pairs(world_list) do
for i,world in pairs(world_list) do
if world.name == "singleplayerworld" then
gamedata.worldindex = i
return
break
end
end
end
......
......@@ -1071,6 +1071,8 @@ static bool create_userdata_path()
porting::setExternalStorageDir(porting::jnienv);
if (!fs::PathExists(porting::path_user)) {
success = fs::CreateDir(porting::path_user);
} else {
success = true;
}
porting::copyAssets();
#else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment