From 216b04f66468617598d0a8172f58adaa50a5772f Mon Sep 17 00:00:00 2001 From: RamiLego4Game Date: Sun, 13 May 2018 16:21:02 +0300 Subject: [PATCH] Icon file rename --- test.ico => Icon.ico | Bin main.lua | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) rename test.ico => Icon.ico (100%) diff --git a/test.ico b/Icon.ico similarity index 100% rename from test.ico rename to Icon.ico diff --git a/main.lua b/main.lua index 0dbd4d0..43bc52a 100644 --- a/main.lua +++ b/main.lua @@ -6,8 +6,8 @@ function love.load(args) love.graphics.setBackgroundColor(1,1,1,1) local exeFile = assert(love.filesystem.newFile("love.exe","r")) - local icoFile = assert(love.filesystem.newFile("test.ico","r")) - local newFile = assert(love.filesystem.newFile("result-"..os.time()..".exe","w")) + local icoFile = assert(love.filesystem.newFile("Icon.ico","r")) + local newFile = assert(love.filesystem.newFile("Patched-"..os.time()..".exe","w")) local success = lovePE.replaceIcon(exeFile,icoFile,newFile)