mirror of
https://gitlab.com/Mr_Goldberg/goldberg_emulator.git
synced 2024-11-10 06:38:34 +01:00
Little improvements
steam_user_stats: Use the value stored in the JSON object. steal_inventory: use 'empty' that is guaranteed to be constant in time.
This commit is contained in:
parent
02ef03b3f2
commit
56957abc99
1 changed files with 2 additions and 2 deletions
|
@ -828,7 +828,7 @@ bool SubmitUpdateProperties( SteamInventoryUpdateHandle_t handle, SteamInventory
|
||||||
|
|
||||||
void RunCallbacks()
|
void RunCallbacks()
|
||||||
{
|
{
|
||||||
if (call_definition_update || inventory_requests.size()) {
|
if (call_definition_update || !inventory_requests.empty()) {
|
||||||
if (!item_definitions_loaded) {
|
if (!item_definitions_loaded) {
|
||||||
read_items_db();
|
read_items_db();
|
||||||
item_definitions_loaded = true;
|
item_definitions_loaded = true;
|
||||||
|
@ -842,7 +842,7 @@ void RunCallbacks()
|
||||||
call_definition_update = false;
|
call_definition_update = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (inventory_requests.size() && !inventory_loaded) {
|
if (!inventory_requests.empty() && !inventory_loaded) {
|
||||||
read_inventory_db();
|
read_inventory_db();
|
||||||
inventory_loaded = true;
|
inventory_loaded = true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue