diff --git a/data/glest_game b/data/glest_game index bf04854ad..f0cbcec28 160000 --- a/data/glest_game +++ b/data/glest_game @@ -1 +1 @@ -Subproject commit bf04854ade7cd0fc51483c857e590acfef4fbc26 +Subproject commit f0cbcec28548c1eaf968b7598de0410e23dd0a5a diff --git a/source/glest_game/menu/menu_state_about.cpp b/source/glest_game/menu/menu_state_about.cpp index 5fd9672b2..db3e2c23e 100644 --- a/source/glest_game/menu/menu_state_about.cpp +++ b/source/glest_game/menu/menu_state_about.cpp @@ -229,7 +229,11 @@ void MenuStateAbout::render() { if(customModTexture == NULL) { string customModCreditsTextureFile = Config::getInstance().getString("CustomModCreditsTextureFile",""); if(customModCreditsTextureFile != "") { - customModTexture = Renderer::findTexture(customModCreditsTextureFile); + string data_path= getGameReadWritePath(GameConstants::path_data_CacheLookupKey); + if(data_path != ""){ + endPathWithSlash(data_path); + } + customModTexture = Renderer::findTexture(data_path + customModCreditsTextureFile); } }