Update sPhone.lua
This commit is contained in:
parent
339d1e68aa
commit
6f8b2c2f9e
1 changed files with 11 additions and 0 deletions
|
@ -35,6 +35,17 @@ local function crash(err)
|
|||
end
|
||||
|
||||
local function kernel()
|
||||
term.setBackgroundColor(colors.white)
|
||||
term.setCursorPos(1,1)
|
||||
term.clear()
|
||||
term.setTextColor(colors.black)
|
||||
if fs.exists("/.sPhone/interfaces/bootImage") then
|
||||
local bootImage = paintutils.loadImage("/.sPhone/interfaces/bootImage")
|
||||
paintutils.drawImage(bootImage, 11,7)
|
||||
else
|
||||
print("Missing bootImage")
|
||||
end
|
||||
sleep(1)
|
||||
_G.sPhone = {
|
||||
version = "Alpha 2.4.1",
|
||||
user = "Run sID",
|
||||
|
|
Loading…
Reference in a new issue