mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-12 14:28:08 -05:00
Fix -Werror=conversion error.
This commit is contained in:
@ -180,7 +180,7 @@ public:
|
||||
}
|
||||
|
||||
constexpr void Assign(const T& value) {
|
||||
storage = (static_cast<StorageType>(storage) & ~mask) | FormatValue(value);
|
||||
storage = static_cast<StorageType>((storage & ~mask) | FormatValue(value));
|
||||
}
|
||||
|
||||
constexpr T Value() const {
|
||||
|
Reference in New Issue
Block a user