We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 455f441 commit 9b4588bCopy full SHA for 9b4588b
2 files changed
OCNetFS/conf.lua
@@ -11,5 +11,7 @@ function love.conf(t)
11
t.modules.mouse = false
12
t.modules.physics = false
13
t.modules.sound = false
14
+ t.modules.touch = false
15
+ t.modules.video = false
16
t.modules.window = false
17
end
OCNetFS/ocnetfs.lua
@@ -10,10 +10,13 @@ end
10
local shell = require("shell")
local args,opts = shell.parse(...)
-if #args < 2 then
- print("Usage: ocnetfs ip port")
+if #args < 1 or #args > 2 then
+ print("Usage: ocnetfs ip [port]")
return
+if #args < 2 then
18
+ args[2] = "14948"
19
+end
20
21
local ip,port = args[1],tonumber(args[2])
22
if port == nil then
0 commit comments