mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-22 22:25:38 +00:00
(Windows) Fixed an MSVC compiler warning
This commit is contained in:
parent
2059ba3eeb
commit
dbecb22cc7
|
@ -453,7 +453,7 @@ void GuiScraperSearch::onSearchDone(std::vector<ScraperSearchResult>& results)
|
||||||
const std::string entryText {
|
const std::string entryText {
|
||||||
results.size() > 1 ? "Result entry " + std::to_string(i) + ": " : ""};
|
results.size() > 1 ? "Result entry " + std::to_string(i) + ": " : ""};
|
||||||
if (results[i].md5Hash == mMD5Hash) {
|
if (results[i].md5Hash == mMD5Hash) {
|
||||||
mAutomaticModeGameEntry = i;
|
mAutomaticModeGameEntry = static_cast<int>(i);
|
||||||
LOG(LogDebug)
|
LOG(LogDebug)
|
||||||
<< "GuiScraperSearch::onSearchDone(): " << entryText
|
<< "GuiScraperSearch::onSearchDone(): " << entryText
|
||||||
<< "Perfect match, MD5 digest in server response identical to file hash";
|
<< "Perfect match, MD5 digest in server response identical to file hash";
|
||||||
|
|
Loading…
Reference in a new issue