mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-23 19:16:21 +00:00
TUCKER: Use empty() instead of comparing against empty string literal
This commit is contained in:
parent
cf0f0122e4
commit
931113789b
@ -143,7 +143,7 @@ void TuckerEngine::handleCreditsSequence() {
|
||||
filename = "loc78.pcx";
|
||||
break;
|
||||
}
|
||||
if (filename != "")
|
||||
if (!filename.empty())
|
||||
loadImage(filename.c_str(), _quadBackgroundGfxBuf, 2);
|
||||
}
|
||||
_spritesCount = _creditsSequenceSpriteCounts[num];
|
||||
|
Loading…
x
Reference in New Issue
Block a user