Skip to content

Commit

Permalink
fix clang compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
treellama committed Aug 17, 2024
1 parent 7b6a029 commit e45d50b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Steam/steamshim_parent.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -752,7 +752,7 @@ static void UpdateItem(PublishedFileId_t item_id, const item_upload_data& item_d
tag_array[i] = tags[i].c_str();
}

SteamParamStringArray_t steam_tags = { tag_array, tags.size() };
SteamParamStringArray_t steam_tags = { tag_array, static_cast<int>(tags.size()) };
GSteamUGC->SetItemTags(updateHandle, &steam_tags);

if (!item_data.directory_path.empty())
Expand Down

0 comments on commit e45d50b

Please sign in to comment.