Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ dnl This program is distributed under the terms of the GPL v2.0
dnl Download the GNU Public License (GPL) from www.gnu.org
dnl

AC_INIT([smallbasic], [0.11.12])
AC_INIT([smallbasic], [0.11.13])
AC_CONFIG_SRCDIR([configure.ac])

AC_CANONICAL_TARGET
Expand Down
5 changes: 5 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
smallbasic (0.11.13) unstable; urgency=low
* Fixed UDS handling

-- Chris Warren-Smith <cwarrensmith@gmail.com> Sun, 24 August 2014 09:45:25 +1000

smallbasic (0.11.12) unstable; urgency=low
* Fixed/implemented INCLUDE command

Expand Down
4 changes: 4 additions & 0 deletions src/platform/fltk/dev_fltk.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,10 @@ int osd_devinit() {

os_graf_mx = wnd->_out->w();
os_graf_my = wnd->_out->h();

setsysvar_int(SYSVAR_XMAX, os_graf_mx - 1);
setsysvar_int(SYSVAR_YMAX, os_graf_my - 1);

os_color_depth = 32;
if (SharedImage::first_image) {
SharedImage::first_image->clear_cache();
Expand Down