summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--uisimulator/x11/uibasic.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/uisimulator/x11/uibasic.c b/uisimulator/x11/uibasic.c
index 9af9eb4331..78ba500b6d 100644
--- a/uisimulator/x11/uibasic.c
+++ b/uisimulator/x11/uibasic.c
@@ -45,8 +45,7 @@
45GC draw_gc; 45GC draw_gc;
46static Colormap cmap; 46static Colormap cmap;
47 47
48static long maxx, maxy; 48static int display_zoom=1;
49static int display_zoom=2;
50 49
51Display *dpy; 50Display *dpy;
52Window window; 51Window window;
@@ -80,17 +79,18 @@ void init_window ()
80 get_pixel_resource ("foreground", "Foreground", dpy, cmap); 79 get_pixel_resource ("foreground", "Foreground", dpy, cmap);
81 draw_gc = XCreateGC (dpy, window, GCForeground, &gcv); 80 draw_gc = XCreateGC (dpy, window, GCForeground, &gcv);
82 81
83 screen_resized(200, 100); 82 screen_resized(LCD_WIDTH, LCD_HEIGHT);
84} 83}
85 84
86void screen_resized(int width, int height) 85void screen_resized(int width, int height)
87{ 86{
88 maxx = width-1; 87 int maxx, maxy;
89 maxy = height-1; 88 maxx = width;
89 maxy = height;
90 90
91 display_zoom = maxy/64; 91 display_zoom = maxy/LCD_HEIGHT;
92 if (maxx/120 < display_zoom) 92 if (maxx/LCD_WIDTH < display_zoom)
93 display_zoom = maxx/120; 93 display_zoom = maxx/LCD_WIDTH;
94 if (display_zoom<1) 94 if (display_zoom<1)
95 display_zoom = 1; 95 display_zoom = 1;
96 XSetForeground (dpy, draw_gc, get_pixel_resource ("background", "Background", 96 XSetForeground (dpy, draw_gc, get_pixel_resource ("background", "Background",