Simplify render time message to prevent confusion.

This commit is contained in:
Raimund58
2023-05-21 15:07:18 +00:00
committed by harlekin
parent b8c3e25c96
commit 6e222cbb27

View File

@@ -647,9 +647,7 @@ import java.util.regex.Pattern;
scene_dir.delete(); scene_dir.delete();
} }
gui.status(String.format("Frame finished in %dmin%ds, render time: %dmin%ds", gui.status(String.format("Render time: %dmin%ds",
process.getDuration() / 60,
process.getDuration() % 60,
process.getRenderDuration() / 60, process.getRenderDuration() / 60,
process.getRenderDuration() % 60) process.getRenderDuration() % 60)
); );