Merge pull request #7798 from ShFil119/impr/empty

Use empty instead of size
This commit is contained in:
Tilka
2019-02-13 01:59:43 +00:00
committed by GitHub
28 changed files with 56 additions and 56 deletions

View File

@ -474,7 +474,7 @@ void GameList::CompressISO(bool decompress)
auto files = GetSelectedGames();
const auto game = GetSelectedGame();
if (files.size() == 0 || !game)
if (files.empty() || !game)
return;
bool wii_warning_given = false;