Skip to content

Commit c3bdddf

Browse files
committed
Merge pull request #16 from chrisws/android
COMMON: bump version
2 parents dae2ab6 + fe20a52 commit c3bdddf

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ dnl This program is distributed under the terms of the GPL v2.0
77
dnl Download the GNU Public License (GPL) from www.gnu.org
88
dnl
99

10-
AC_INIT([smallbasic], [0.11.12])
10+
AC_INIT([smallbasic], [0.11.13])
1111
AC_CONFIG_SRCDIR([configure.ac])
1212

1313
AC_CANONICAL_TARGET

debian/changelog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
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+
16
smallbasic (0.11.12) unstable; urgency=low
27
* Fixed/implemented INCLUDE command
38

src/platform/fltk/dev_fltk.cxx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff 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();

0 commit comments

Comments
 (0)