Skip to content
This repository has been archived by the owner on Jan 24, 2024. It is now read-only.

Commit

Permalink
Clear luacheck warnings
Browse files Browse the repository at this point in the history
Former-commit-id: 4483f36
  • Loading branch information
Rami-Sabbagh committed Sep 1, 2018
1 parent 0ab7f63 commit 56743a6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 8 deletions.
6 changes: 1 addition & 5 deletions BIOS/setup.lua
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,16 @@ local Handled, Devkits = ... --Handled is passed by BIOS POST

local DevMode = love.filesystem.getInfo("/Miscellaneous/devmode.txt") and true or false

--Engine parts
local coreg = require("Engine.coreg")

--Peripherals
local Keyboard = Handled.Keyboard
local BIOS = Handled.BIOS
local GPU = Handled.GPU
local CPU = Handled.CPU
local fs = Handled.HDD
local TC = Handled.TC

--Constants
local sw,sh = GPU.screenSize()
local tw,th = GPU.termSize()
local tw = GPU.termWidth()
local fw,fh = GPU.fontSize()
local mobile = CPU.isMobile()

Expand Down
2 changes: 1 addition & 1 deletion OS/DiskOS/System/faketerminal.lua
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ SpriteGroup(25,1,1,5,1,1,1,0,_SystemSheet)
printCursor(0,1,0)
color(_LIKO_DEV and 8 or (_LIKO_PRE and 9 or 11)) print(_LIKO_TAG,5*8+1,3)
flip() sleep(0.125)
color(7) print("V".._LIKO_BUILD,(_LIKO_DEV or _LIKO_PRE) and 53 or 43,10)
color(7) print("V".._LIKO_BUILD,(_LIKO_DEV or _LIKO_PRE) and 53 or 43,10)
cam("translate",0,3) color(12) print("D",false) color(6) print("isk",false) color(12) print("OS") color(6) cam()
_SystemSheet:draw(60,(fw+1)*6+1,fh+3) flip() sleep(0.125)
color(6) print("\nhttp://github.com/ramilego4game/liko12")
Expand Down
2 changes: 1 addition & 1 deletion OS/DiskOS/terminal.lua
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ function term.init()
printCursor(0,1,0)
color(_LIKO_DEV and 8 or (_LIKO_PRE and 9 or 11)) print(_LIKO_TAG,5*8+1,3)
flip() sleep(0.125)
color(7) print("V".._LIKO_BUILD,(_LIKO_DEV or _LIKO_PRE) and 53 or 43,10)
color(7) print("V".._LIKO_BUILD,(_LIKO_DEV or _LIKO_PRE) and 53 or 43,10)
cam("translate",0,3) color(12) print("D",false) color(6) print("isk",false) color(12) print("OS") color(6) cam()
_SystemSheet:draw(60,(fw+1)*6+1,fh+3) flip() sleep(0.125)
color(6) print("\nhttp://github.com/ramilego4game/liko12")
Expand Down
2 changes: 1 addition & 1 deletion OS/GameDiskOS/System/faketerminal.lua
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ SpriteGroup(25,1,1,5,1,1,1,0,_SystemSheet)
printCursor(0,1,0)
color(_LIKO_DEV and 8 or (_LIKO_PRE and 9 or 11)) print(_LIKO_TAG,5*8+1,3)
flip() sleep(0.125)
color(7) print("V".._LIKO_BUILD,(_LIKO_DEV or _LIKO_PRE) and 53 or 43,10)
color(7) print("V".._LIKO_BUILD,(_LIKO_DEV or _LIKO_PRE) and 53 or 43,10)
cam("translate",0,3) color(12) print("D",false) color(6) print("isk",false) color(12) print("OS") color(6) cam()
_SystemSheet:draw(60,(fw+1)*6+1,fh+3) flip() sleep(0.125)
color(6) print("\nhttp://github.com/ramilego4game/liko12")
Expand Down

0 comments on commit 56743a6

Please sign in to comment.