From 29a5556c33229d68b23939541fbe0ac3abcc5da8 Mon Sep 17 00:00:00 2001 From: MrZ626 <1046101471@qq.com> Date: Wed, 5 May 2021 14:39:52 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B8=B8=E9=A9=BB=E7=89=88=E6=9C=AC=E4=BF=A1?= =?UTF-8?q?=E6=81=AF=E6=98=BE=E7=A4=BA=E7=A7=BB=E5=8A=A8=E5=88=B0=E5=B1=8F?= =?UTF-8?q?=E5=B9=95=E4=B8=AD=E9=97=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Zframework/init.lua | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Zframework/init.lua b/Zframework/init.lua index 525e4ce0..10b7070a 100644 --- a/Zframework/init.lua +++ b/Zframework/init.lua @@ -535,6 +535,11 @@ function love.run() --Draw widgets WIDGET.draw() + --Draw Version string + gc_setColor(.8,.8,.8,.4) + setFont(20) + mStr(VERSION.string,640,693) + --Draw cursor if mouseShow then local R=int((time+1)/2)%7+1 @@ -564,8 +569,6 @@ function love.run() --Draw FPS setFont(15) _=SCR.h - gc_setColor(.8,.8,.8,.4) - gc_print(VERSION.string,SCR.safeX+50,_-20) gc_setColor(1,1,1) gc_print(FPS(),SCR.safeX+5,_-20)