Add Serial logging support

This commit is contained in:
Иван Кузьменко 2025-09-06 21:16:07 +03:00
parent 3c99062536
commit 0da75f90d7
2 changed files with 9 additions and 0 deletions

7
game/conf.lua Normal file
View file

@ -0,0 +1,7 @@
function love.conf(t)
t.console = true
if t.dos then
t.dos.console = "COM1"
-- t.dos.console = "c:\\test.log"
end
end