mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-02 11:02:28 +02:00
Fix a type-conversion warning in Movie.cpp
Fixes a C4800 warning. 'int' : forcing value to bool 'true' or 'false' (performance warning)
This commit is contained in:
parent
ab6434f616
commit
9c764eff3a
@ -368,7 +368,7 @@ bool IsStartingFromClearSave()
|
||||
|
||||
bool IsUsingMemcard(int memcard)
|
||||
{
|
||||
return memcards & (1 << memcard);
|
||||
return (memcards & (1 << memcard)) != 0;
|
||||
}
|
||||
bool IsSyncGPU()
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user