Skip to content

Commit 9121727

Browse files
committed
Fix a two character mistake...
It's a function to get the keyboard... not a static value.
1 parent ff24569 commit 9121727

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

miniOS/minios.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1058,7 +1058,7 @@ function keyboard_code(keyboard_data)
10581058
})
10591059

10601060
local function getKeyboardAddress(address)
1061-
return address or term.keyboard.address
1061+
return address or term.keyboard().address
10621062
end
10631063

10641064
local function getPressedCodes(address)

0 commit comments

Comments
 (0)