summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debugger.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/debugger.lua b/debugger.lua
index d5c12ff6..ac4af205 100644
--- a/debugger.lua
+++ b/debugger.lua
@@ -45,7 +45,7 @@ local function tryDebugger()
local entry = assert(package.searchpath('debugger', debugPath:string() .. path))
local root = debugPath:string()
local addr = ("127.0.0.1:%d"):format(DBGPORT)
- local dbg = loadfile(entry)('windows', root)
+ local dbg = loadfile(entry)(root)
dbg:start(addr)
log.debug('Debugger startup, listen port:', DBGPORT)
log.debug('Debugger args:', addr, root, path, cpath)