mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
Merge pull request #552 from lioncash/warning
Fix a type-conversion warning in Movie.cpp
This commit is contained in:
@ -368,7 +368,7 @@ bool IsStartingFromClearSave()
|
|||||||
|
|
||||||
bool IsUsingMemcard(int memcard)
|
bool IsUsingMemcard(int memcard)
|
||||||
{
|
{
|
||||||
return memcards & (1 << memcard);
|
return (memcards & (1 << memcard)) != 0;
|
||||||
}
|
}
|
||||||
bool IsSyncGPU()
|
bool IsSyncGPU()
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user