diff options
| author | 2020-10-28 02:31:30 -0300 | |
|---|---|---|
| committer | 2020-10-28 02:37:47 -0300 | |
| commit | 4a451e584917ec89fa593068bacd6b46a96e8fb5 (patch) | |
| tree | 14e37da4cdc8aa980d665ab4d33a6208c3f12bc1 /src/video_core/command_classes | |
| parent | Merge pull request #4842 from liushuyu/fix-web-srv (diff) | |
| download | yuzu-4a451e584917ec89fa593068bacd6b46a96e8fb5.tar.gz yuzu-4a451e584917ec89fa593068bacd6b46a96e8fb5.tar.xz yuzu-4a451e584917ec89fa593068bacd6b46a96e8fb5.zip | |
video_core: Enforce -Werror=type-limits
Silences one warning and avoids introducing more in the future.
Diffstat (limited to 'src/video_core/command_classes')
| -rw-r--r-- | src/video_core/command_classes/codecs/vp9.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/command_classes/codecs/vp9.cpp b/src/video_core/command_classes/codecs/vp9.cpp index 3bae0bb5d..c47a0e060 100644 --- a/src/video_core/command_classes/codecs/vp9.cpp +++ b/src/video_core/command_classes/codecs/vp9.cpp | |||
| @@ -893,7 +893,7 @@ void VpxRangeEncoder::Write(bool bit, s32 probability) { | |||
| 893 | if (((low_value << (offset - 1)) >> 31) != 0) { | 893 | if (((low_value << (offset - 1)) >> 31) != 0) { |
| 894 | const s32 current_pos = static_cast<s32>(base_stream.GetPosition()); | 894 | const s32 current_pos = static_cast<s32>(base_stream.GetPosition()); |
| 895 | base_stream.Seek(-1, Common::SeekOrigin::FromCurrentPos); | 895 | base_stream.Seek(-1, Common::SeekOrigin::FromCurrentPos); |
| 896 | while (base_stream.GetPosition() >= 0 && PeekByte() == 0xff) { | 896 | while (PeekByte() == 0xff) { |
| 897 | base_stream.WriteByte(0); | 897 | base_stream.WriteByte(0); |
| 898 | 898 | ||
| 899 | base_stream.Seek(-2, Common::SeekOrigin::FromCurrentPos); | 899 | base_stream.Seek(-2, Common::SeekOrigin::FromCurrentPos); |