From 4f3a03f2f435fab41b68c443494075dbf3244f20 Mon Sep 17 00:00:00 2001 From: Randy Heit Date: Sat, 23 Feb 2013 04:24:40 +0000 Subject: [PATCH] - Fixed: stat skyboxes output was broken. SVN r4163 (trunk) --- src/r_plane.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/r_plane.cpp b/src/r_plane.cpp index 0e8237cb6..75c308b5a 100644 --- a/src/r_plane.cpp +++ b/src/r_plane.cpp @@ -1335,7 +1335,7 @@ void R_DrawSkyBoxes () ADD_STAT(skyboxes) { FString out; - out.Format (out, "%d skybox planes", numskyboxes); + out.Format ("%d skybox planes", numskyboxes); return out; }