Skip to content

Commit

Permalink
Fixed compile errors
Browse files Browse the repository at this point in the history
  • Loading branch information
tredfern committed Aug 25, 2019
1 parent bd29605 commit 211ac78
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .luacheckrc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
std = "max+love+busted"
self = false
globals = {}
exclude_files = { }
exclude_files = {"moonpie/*"}
4 changes: 2 additions & 2 deletions conf.lua
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
-- Copyright (c) 2019 Trevor Redfern
--
--
-- This software is released under the MIT License.
-- https://opensource.org/licenses/MIT

Expand All @@ -9,6 +9,6 @@ function love.conf(t)
t.window.width = 800
t.window.vsync = 1
t.window.fullscreen = false

package.path = package.path .. ";./ext/?.lua;./ext/?/init.lua"
end
12 changes: 10 additions & 2 deletions main.lua
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
-- Copyright (c) 2019 Trevor Redfern
--
--
-- This software is released under the MIT License.
-- https://opensource.org/licenses/MIT

local moonpie = require "moonpie"
local moonpie = require "moonpie"

function love.update()
moonpie.update()
end

function love.draw()
moonpie.paint()
end
2 changes: 1 addition & 1 deletion test_helpers/all.lua
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
-- Copyright (c) 2019 Trevor Redfern
--
--
-- This software is released under the MIT License.
-- https://opensource.org/licenses/MIT

Expand Down

0 comments on commit 211ac78

Please sign in to comment.