fix shuffle brick (#134)

This commit is contained in:
LiquidFenrir
2018-01-28 02:37:52 +01:00
committed by GitHub
parent f01e347b17
commit 5090da114f
3 changed files with 5 additions and 5 deletions

View File

@@ -463,9 +463,9 @@ int main(void)
{
throw_error("You have too many themes selected.", ERROR_LEVEL_WARNING);
}
else if(current_list->shuffle_count == 0)
else if(current_list->shuffle_count < 2)
{
throw_error("You don't have any themes selected.", ERROR_LEVEL_WARNING);
throw_error("You don't have enough themes selected.", ERROR_LEVEL_WARNING);
}
else
{