steam_items.json renamed

steam_items.json has been renamed to items.json and now lives in steam_settings beside the steam_api.dll
This commit is contained in:
Nemirtingas 2019-07-14 20:53:20 +02:00
parent 332c0479bb
commit 3273b1482b
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ public:
Steam_Inventory(class Settings *settings, class SteamCallResults *callback_results, class SteamCallBacks *callbacks)
{
std::thread items_load_thread(read_items_db, Local_Storage::get_game_settings_path() + PATH_SEPARATOR + "items.json", &items, &items_loaded);
std::thread items_load_thread(read_items_db, Local_Storage::get_game_settings_path() + "items.json", &items, &items_loaded);
items_load_thread.detach();
this->settings = settings;