mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2025-04-10 19:15:13 +00:00
(Windows) Fixed an MSVC compiler warning in MediaPlayer.
This commit is contained in:
parent
e07b9a7229
commit
b6461b913a
|
@ -170,7 +170,7 @@ void MediaViewer::findMedia()
|
||||||
|
|
||||||
if (mHasVideo && (mediaFile = mGame->getScreenshotPath()) != "") {
|
if (mHasVideo && (mediaFile = mGame->getScreenshotPath()) != "") {
|
||||||
mImageFiles.push_back(mediaFile);
|
mImageFiles.push_back(mediaFile);
|
||||||
mScreenShotIndex = mImageFiles.size() - 1;
|
mScreenShotIndex = static_cast<int>(mImageFiles.size() - 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((mediaFile = mGame->get3DBoxPath()) != "")
|
if ((mediaFile = mGame->get3DBoxPath()) != "")
|
||||||
|
|
Loading…
Reference in a new issue