diff --git a/es-app/src/guis/GuiScraperSearch.cpp b/es-app/src/guis/GuiScraperSearch.cpp index e9c26d18f..ebe9f29c3 100644 --- a/es-app/src/guis/GuiScraperSearch.cpp +++ b/es-app/src/guis/GuiScraperSearch.cpp @@ -453,7 +453,7 @@ void GuiScraperSearch::onSearchDone(std::vector& results) const std::string entryText { results.size() > 1 ? "Result entry " + std::to_string(i) + ": " : ""}; if (results[i].md5Hash == mMD5Hash) { - mAutomaticModeGameEntry = i; + mAutomaticModeGameEntry = static_cast(i); LOG(LogDebug) << "GuiScraperSearch::onSearchDone(): " << entryText << "Perfect match, MD5 digest in server response identical to file hash";