Skip to content

Commit

Permalink
Fix absence of images when compiled with RUN_IN_PLACE=0.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ilya Zhuravlev authored and celeron55 committed Jan 5, 2014
1 parent 4d22977 commit b8c3221
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
5 changes: 2 additions & 3 deletions builtin/mainmenu.lua
Expand Up @@ -253,7 +253,7 @@ function menu.init()
menu.favorites = engine.get_favorites("local")
end

menu.defaulttexturedir = engine.get_texturepath() .. DIR_DELIM .. "base" ..
menu.defaulttexturedir = engine.get_texturepath_share() .. DIR_DELIM .. "base" ..
DIR_DELIM .. "pack" .. DIR_DELIM
end

Expand Down Expand Up @@ -1070,8 +1070,7 @@ function tabbuilder.tab_texture_packs()
local no_screenshot = nil
if not file_exists(screenfile) then
screenfile = nil
no_screenshot = engine.get_texturepath()..DIR_DELIM..
"base"..DIR_DELIM.."pack"..DIR_DELIM.."no_screenshot.png"
no_screenshot = menu.defaulttexturedir .. "no_screenshot.png"
end

return retval ..
Expand Down
10 changes: 10 additions & 0 deletions src/script/lua_api/l_mainmenu.cpp
Expand Up @@ -704,6 +704,14 @@ int ModApiMainMenu::l_get_texturepath(lua_State *L)
return 1;
}

int ModApiMainMenu::l_get_texturepath_share(lua_State *L)
{
std::string gamepath
= fs::RemoveRelativePathComponents(porting::path_share + DIR_DELIM + "textures");
lua_pushstring(L, gamepath.c_str());
return 1;
}

/******************************************************************************/
int ModApiMainMenu::l_get_dirlist(lua_State *L)
{
Expand Down Expand Up @@ -1032,6 +1040,7 @@ void ModApiMainMenu::Initialize(lua_State *L, int top)
API_FCT(get_modpath);
API_FCT(get_gamepath);
API_FCT(get_texturepath);
API_FCT(get_texturepath_share);
API_FCT(get_dirlist);
API_FCT(create_dir);
API_FCT(delete_dir);
Expand Down Expand Up @@ -1059,6 +1068,7 @@ void ModApiMainMenu::InitializeAsync(AsyncEngine& engine)
ASYNC_API_FCT(get_modpath);
ASYNC_API_FCT(get_gamepath);
ASYNC_API_FCT(get_texturepath);
ASYNC_API_FCT(get_texturepath_share);
ASYNC_API_FCT(get_dirlist);
ASYNC_API_FCT(create_dir);
ASYNC_API_FCT(delete_dir);
Expand Down
2 changes: 2 additions & 0 deletions src/script/lua_api/l_mainmenu.h
Expand Up @@ -111,6 +111,8 @@ class ModApiMainMenu : public ModApiBase {

static int l_get_texturepath(lua_State *L);

static int l_get_texturepath_share(lua_State *L);

static int l_get_dirlist(lua_State *L);

static int l_create_dir(lua_State *L);
Expand Down

0 comments on commit b8c3221

Please sign in to comment.