mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-15 06:28:07 -05:00
Merge pull request #772 from lioncash/warn
core/video_core: Fix a few warnings when compiling on MSVC.
This commit is contained in:
@ -614,7 +614,7 @@ struct Regs {
|
||||
}
|
||||
|
||||
inline bool IsDefaultAttribute(int id) const {
|
||||
return (id >= 12) || (attribute_mask & (1 << id)) != 0;
|
||||
return (id >= 12) || (attribute_mask & (1ULL << id)) != 0;
|
||||
}
|
||||
|
||||
inline int GetNumTotalAttributes() const {
|
||||
|
Reference in New Issue
Block a user