Skip to content

Commit

Permalink
debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
slime73 committed Feb 25, 2024
1 parent 33eab3c commit 7225955
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
8 changes: 8 additions & 0 deletions testing/conf.lua
Original file line number Diff line number Diff line change
@@ -1,10 +1,18 @@
print("abc")

function love.conf(t)
print("def")
t.console = true
t.window.name = 'love.test'
t.window.width = 360
t.window.height = 240
t.window.resizable = true
t.window.depth = true
t.window.stencil = true
t.window = nil
t.modules.graphics = false
t.modules.window = false
t.modules.joystick = false
t.modules.audio = false
t.renderers = {"opengl"}
end
1 change: 1 addition & 0 deletions testing/main.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
print("hello world")
io.flush()
os.exit()

-- load test objs
Expand Down

0 comments on commit 7225955

Please sign in to comment.