mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-01 04:47:53 +00:00
video_core: Enforce -Werror=type-limits
Silences one warning and avoids introducing more in the future.
This commit is contained in:
parent
7d27a7a511
commit
4a451e5849
2 changed files with 2 additions and 1 deletions
|
@ -303,6 +303,7 @@ else()
|
|||
-Werror=conversion
|
||||
-Wno-error=sign-conversion
|
||||
-Werror=switch
|
||||
-Werror=type-limits
|
||||
-Werror=unused-variable
|
||||
|
||||
$<$<CXX_COMPILER_ID:GNU>:-Werror=class-memaccess>
|
||||
|
|
|
@ -893,7 +893,7 @@ void VpxRangeEncoder::Write(bool bit, s32 probability) {
|
|||
if (((low_value << (offset - 1)) >> 31) != 0) {
|
||||
const s32 current_pos = static_cast<s32>(base_stream.GetPosition());
|
||||
base_stream.Seek(-1, Common::SeekOrigin::FromCurrentPos);
|
||||
while (base_stream.GetPosition() >= 0 && PeekByte() == 0xff) {
|
||||
while (PeekByte() == 0xff) {
|
||||
base_stream.WriteByte(0);
|
||||
|
||||
base_stream.Seek(-2, Common::SeekOrigin::FromCurrentPos);
|
||||
|
|
Loading…
Reference in a new issue