summaryrefslogtreecommitdiff
path: root/sys/src/cmd/vmx/vga.c
diff options
context:
space:
mode:
authorSigrid <ftrvxmtrx@gmail.com>2020-07-31 11:24:02 +0200
committerSigrid <ftrvxmtrx@gmail.com>2020-07-31 11:24:02 +0200
commitde27182a8ebe759bebfb7b123dffbb0f29eea922 (patch)
tree80e3cc31144ebc3b400b6fc3ee0b9bdbf0eb0038 /sys/src/cmd/vmx/vga.c
parenteb65fc5e698d0f6bd70e5e51c0497dc53ec48aa0 (diff)
vmx: use _actual_ system kbmap
Diffstat (limited to 'sys/src/cmd/vmx/vga.c')
-rw-r--r--sys/src/cmd/vmx/vga.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/cmd/vmx/vga.c b/sys/src/cmd/vmx/vga.c
index fd88b57f7..2a47ac2fb 100644
--- a/sys/src/cmd/vmx/vga.c
+++ b/sys/src/cmd/vmx/vga.c
@@ -760,7 +760,7 @@ vgainit(void)
sysfatal("failed to initialize graphics: %r");
screeninit(1);
flushimage(display, 1);
- kbdlayout("/sys/lib/kbmap/us");
+ kbdlayout("/dev/kbmap");
mc = initmouse(nil, screen);
kbdch = chancreate(sizeof(ulong), 128);
mousech = chancreate(sizeof(Mouse), 32);