From 8c41c387d721cec9a20f42726b39ad050eedab77 Mon Sep 17 00:00:00 2001 From: Marisa Kirisame Date: Sat, 27 Jan 2018 19:36:01 +0100 Subject: [PATCH] Typo fix --- wadsrc/static/zscript/base.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wadsrc/static/zscript/base.txt b/wadsrc/static/zscript/base.txt index d2c923b39..dc218dc16 100644 --- a/wadsrc/static/zscript/base.txt +++ b/wadsrc/static/zscript/base.txt @@ -647,7 +647,7 @@ struct LevelLocals native native void ChangeSky( TextureID sky1, TextureID sky2 ); - String clearscope TimeFormatted(bool totals = false) + clearscope String TimeFormatted(bool totals = false) { int sec = Thinker.Tics2Seconds(totals? totaltime : time); return String.Format("%02d:%02d:%02d", sec / 3600, (sec % 3600) / 60, sec % 60);