File tree Expand file tree Collapse file tree 3 files changed +10
-1
lines changed Expand file tree Collapse file tree 3 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ dnl This program is distributed under the terms of the GPL v2.0
77dnl Download the GNU Public License (GPL) from www.gnu.org
88dnl
99
10- AC_INIT ( [ smallbasic] , [ 0.11.12 ] )
10+ AC_INIT ( [ smallbasic] , [ 0.11.13 ] )
1111AC_CONFIG_SRCDIR ( [ configure.ac] )
1212
1313AC_CANONICAL_TARGET
Original file line number Diff line number Diff line change 1+ smallbasic (0.11.13) unstable; urgency=low
2+ * Fixed UDS handling
3+
4+ -- Chris Warren-Smith <cwarrensmith@gmail.com> Sun, 24 August 2014 09:45:25 +1000
5+
16smallbasic (0.11.12) unstable; urgency=low
27 * Fixed/implemented INCLUDE command
38
Original file line number Diff line number Diff line change @@ -96,6 +96,10 @@ int osd_devinit() {
9696
9797 os_graf_mx = wnd->_out ->w ();
9898 os_graf_my = wnd->_out ->h ();
99+
100+ setsysvar_int (SYSVAR_XMAX, os_graf_mx - 1 );
101+ setsysvar_int (SYSVAR_YMAX, os_graf_my - 1 );
102+
99103 os_color_depth = 32 ;
100104 if (SharedImage::first_image) {
101105 SharedImage::first_image->clear_cache ();
You can’t perform that action at this time.
0 commit comments