diff options
author | aiju <devnull@localhost> | 2017-06-18 01:51:28 +0000 |
---|---|---|
committer | aiju <devnull@localhost> | 2017-06-18 01:51:28 +0000 |
commit | c3d372c3dae46dbf4657ded30dc3b2bf6c369f59 (patch) | |
tree | 7b188a57c7a21eb04def239d90530b725ba4ef50 | |
parent | 98b1a59547584bd823ed0aa3db0a65c6af56e0d6 (diff) |
vmx(1): fix '-v text'
-rw-r--r-- | sys/src/cmd/vmx/vga.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/src/cmd/vmx/vga.c b/sys/src/cmd/vmx/vga.c index 8877b79a5..4880a1566 100644 --- a/sys/src/cmd/vmx/vga.c +++ b/sys/src/cmd/vmx/vga.c @@ -657,6 +657,8 @@ vgafbparse(char *fbstring) if(strcmp(fbstring, "text") == 0){ curmode = &textmode; + maxw = 640; + maxh = 400; return; }else if(strncmp(fbstring, "vesa:", 5) == 0){ vesamode = 1; |