Skip to content

Commit

Permalink
Merge pull request #552 from lioncash/warning
Browse files Browse the repository at this point in the history
Fix a type-conversion warning in Movie.cpp
  • Loading branch information
lioncash committed Jul 3, 2014
2 parents ab6434f + 9c764ef commit 71d727e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/Core/Movie.cpp
Expand Up @@ -368,7 +368,7 @@ bool IsStartingFromClearSave()

bool IsUsingMemcard(int memcard)
{
return memcards & (1 << memcard);
return (memcards & (1 << memcard)) != 0;
}
bool IsSyncGPU()
{
Expand Down

0 comments on commit 71d727e

Please sign in to comment.