diff options
| author | JMC47 <JMC4789@gmail.com> | 2022-07-17 00:07:50 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-07-17 00:07:50 -0400 |
| commit | f1d23ff9a48ce866f9cd391d32eacb4bfb1c244e (patch) | |
| tree | 1dcb1a30c58a973c881092525eb797c6b1e635f5 /Source/Core/VideoCommon/TextureDecoder_x64.cpp | |
| parent | 2ef069e0e861e275497854e0fe2d19f0c333850a (diff) | |
| parent | a6e06f38adb933187605ac07ef7a0cb1940afa80 (diff) | |
Merge pull request #10466 from Pokechu22/efb-copy-gamma
Accurately handle the copy filter and gamma for EFB and XFB copies
Diffstat (limited to 'Source/Core/VideoCommon/TextureDecoder_x64.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/TextureDecoder_x64.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/Core/VideoCommon/TextureDecoder_x64.cpp b/Source/Core/VideoCommon/TextureDecoder_x64.cpp index 761fc0cd64..85a6e5e731 100644 --- a/Source/Core/VideoCommon/TextureDecoder_x64.cpp +++ b/Source/Core/VideoCommon/TextureDecoder_x64.cpp @@ -1495,8 +1495,7 @@ void _TexDecoder_DecodeImpl(u32* dst, const u8* src, int width, int height, Text break; default: - PanicAlertFmt("Invalid Texture Format ({:#X})! (_TexDecoder_DecodeImpl)", - static_cast<int>(texformat)); + PanicAlertFmt("Invalid Texture Format {}! (_TexDecoder_DecodeImpl)", texformat); break; } } |
