From 2ccc2ac48767059df021784cb17293b969e6290a Mon Sep 17 00:00:00 2001 From: Kae <80987908+Novaenia@users.noreply.github.com> Date: Wed, 1 Jan 2025 19:43:56 +1100 Subject: [PATCH] Update StarClientCommandProcessor.cpp [skip ci] --- source/frontend/StarClientCommandProcessor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/frontend/StarClientCommandProcessor.cpp b/source/frontend/StarClientCommandProcessor.cpp index 78e1ee9..00a6c37 100644 --- a/source/frontend/StarClientCommandProcessor.cpp +++ b/source/frontend/StarClientCommandProcessor.cpp @@ -587,7 +587,7 @@ String ClientCommandProcessor::render(String const& path) { if (!File::isDirectory(outputDirectory)) File::makeDirectory(outputDirectory); image->writePng(File::open(outputPath, IOMode::Write | IOMode::Truncate)); - return strf("Saved {}x{} image to render.png", image->width(), image->height()); + return strf("Saved {}x{} image to {}.png", image->width(), image->height(), outputName); }