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); }