Remove superfluous error message

This commit is contained in:
Henrik Rydgård 2024-01-20 23:11:42 +01:00
parent 5bf6625740
commit 53cfecf8fa

View file

@ -600,8 +600,6 @@ handleELF:
// Let's use the comparison screenshot as an icon, if it exists. // Let's use the comparison screenshot as an icon, if it exists.
if (ReadLocalFileToString(screenshotPath, &info_->icon.data, &info_->lock)) { if (ReadLocalFileToString(screenshotPath, &info_->icon.data, &info_->lock)) {
info_->icon.dataLoaded = true; info_->icon.dataLoaded = true;
} else {
ERROR_LOG(G3D, "Error loading screenshot data: '%s'", screenshotPath.c_str());
} }
break; break;
} }