summaryrefslogtreecommitdiff
path: root/Source/Core/Common/Image.cpp
diff options
context:
space:
mode:
authorMai <mathew1800@gmail.com>2022-09-29 09:05:51 -0400
committerGitHub <noreply@github.com>2022-09-29 09:05:51 -0400
commit0c19a1d87cbd51d62833d31d3413c61b3bc8ccf4 (patch)
treebd5a76acfeec8d7e70345b8720c5e164ef8e4da7 /Source/Core/Common/Image.cpp
parent3fab5b2338f1b7bc1b4ddc0e283c2650a6e2e825 (diff)
parent3d0cd8b076a4a8ff4f6741769781305cd571b5b7 (diff)
Merge pull request #11100 from Pokechu22/software-settings-merge
Use the same settings for the software renderer as other backends
Diffstat (limited to 'Source/Core/Common/Image.cpp')
-rw-r--r--Source/Core/Common/Image.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/Common/Image.cpp b/Source/Core/Common/Image.cpp
index 94e65b9619..bdb8dcb4a8 100644
--- a/Source/Core/Common/Image.cpp
+++ b/Source/Core/Common/Image.cpp
@@ -115,8 +115,8 @@ bool SavePNG(const std::string& path, const u8* input, ImageByteFormat format, u
size_t image_len = 0;
spng_decoded_image_size(ctx.get(), SPNG_FMT_PNG, &image_len);
- INFO_LOG_FMT(FRAMEDUMP, "{} byte {} by {} image saved to {} at level {} in {}", image_len, width,
- height, path, level, timer.ElapsedMs());
+ INFO_LOG_FMT(FRAMEDUMP, "{} byte {} by {} image saved to {} at level {} in {} ms", image_len,
+ width, height, path, level, timer.ElapsedMs());
return true;
}