SliceFavorites

Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com>
This commit is contained in:
pappeste
2021-06-18 16:16:53 -07:00
committed by Esteban Papp
parent e3344bdf8d
commit 9076f60dda
@@ -473,14 +473,14 @@ namespace SliceFavorites
for (size_t index = 0; index < currentList.size(); index++)
{
FavoriteData* current = currentList[index];
FavoriteData* current = currentList[static_cast<int>(index)];
if (!current)
{
continue;
}
settings.setArrayIndex(index);
settings.setArrayIndex(static_cast<int>(index));
settings.setValue("name", current->m_name);
AZStd::string assetIdString;