summaryrefslogtreecommitdiff
path: root/userspace/xterm/xterm.c
diff options
context:
space:
mode:
authorMiguel <m.i@gmx.at>2018-10-19 13:30:01 +0200
committerMiguel <m.i@gmx.at>2018-10-19 13:30:01 +0200
commitc9c26727a11c37f61bc51662c3ca498737ce523f (patch)
tree0032f002df36292e1b07c6add5c73a0b050a76c3 /userspace/xterm/xterm.c
parent45ce8728224caa44d31dca3117992b193fa3cd98 (diff)
compositor stuff
Diffstat (limited to 'userspace/xterm/xterm.c')
-rw-r--r--userspace/xterm/xterm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/userspace/xterm/xterm.c b/userspace/xterm/xterm.c
index 8d3ea97..af5ae57 100644
--- a/userspace/xterm/xterm.c
+++ b/userspace/xterm/xterm.c
@@ -15,7 +15,7 @@ int main(int argc, char **argv)
// default 7x13 pixel font +1 pixel margin so it is 8x14
int w=640;
int h=336;
- _gui_win(0<<16|0,w<<16|h,0);
+ _gui_win(0xffffffff,w<<16|h,0);
// basically loads font and sets a few constants
void *fb=malloc(w*h*4);