diff options
| author | Pokechu22 <Pokechu022@gmail.com> | 2022-09-26 15:04:15 -0700 |
|---|---|---|
| committer | Pokechu22 <Pokechu022@gmail.com> | 2022-09-26 15:04:15 -0700 |
| commit | 67ed4fa92d342da62274f578a2f4886d94165bb4 (patch) | |
| tree | d83467c78a48774f3b587c0201368ccd75f56d13 /Source/Core/Common/Image.cpp | |
| parent | f106bc150a9deac2cef85ff3fef56a5bdb2522d3 (diff) | |
Common/Image: Add unit to log message
Diffstat (limited to 'Source/Core/Common/Image.cpp')
| -rw-r--r-- | Source/Core/Common/Image.cpp | 4 |
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; } |
