diff options
| author | Lioncash <mathew1800@gmail.com> | 2014-07-03 02:14:11 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2014-07-03 02:14:11 -0400 |
| commit | 71d727ebeb454bd01b2a5c1aa31c5fefed0551a6 (patch) | |
| tree | 332dfa862b61556ed6092235446a2591c1304468 /Source | |
| parent | ab6434f616efa532c9442533cdbc1ff19e9c3793 (diff) | |
| parent | 9c764eff3aa2c6ec805940ce13a771ee4ebd06e7 (diff) | |
Merge pull request #552 from lioncash/warning
Fix a type-conversion warning in Movie.cpp
Diffstat (limited to 'Source')
| -rw-r--r-- | Source/Core/Core/Movie.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Core/Movie.cpp b/Source/Core/Core/Movie.cpp index 2d23dca136..bc960ef832 100644 --- a/Source/Core/Core/Movie.cpp +++ b/Source/Core/Core/Movie.cpp @@ -368,7 +368,7 @@ bool IsStartingFromClearSave() bool IsUsingMemcard(int memcard) { - return memcards & (1 << memcard); + return (memcards & (1 << memcard)) != 0; } bool IsSyncGPU() { |
