diff options
| author | Pokechu22 <Pokechu022@gmail.com> | 2021-11-10 14:42:49 -0800 |
|---|---|---|
| committer | Pokechu22 <Pokechu022@gmail.com> | 2022-01-09 12:43:11 -0800 |
| commit | 44e93e91d7043ebad159c7f40a4473b294076066 (patch) | |
| tree | b27d15537c637e41e1c71052dfaf7339c0a607ae /Source/Core/Common/Image.cpp | |
| parent | 1c0ca09e6f0d89ff7549165629271b294f04026c (diff) | |
Common/Assert: Switch to fmt
Diffstat (limited to 'Source/Core/Common/Image.cpp')
| -rw-r--r-- | Source/Core/Common/Image.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Common/Image.cpp b/Source/Core/Common/Image.cpp index 54efcf5e6d..499632718a 100644 --- a/Source/Core/Common/Image.cpp +++ b/Source/Core/Common/Image.cpp @@ -80,7 +80,7 @@ bool SavePNG(const std::string& path, const u8* input, ImageByteFormat format, u byte_per_pixel = 4; break; default: - ASSERT_MSG(FRAMEDUMP, false, "Invalid format %d", static_cast<int>(format)); + ASSERT_MSG(FRAMEDUMP, false, "Invalid format {}", format); return false; } |
