diff --git a/docs/CHANGES.txt b/docs/CHANGES.txt index 58f1ab92a..645ae055e 100644 --- a/docs/CHANGES.txt +++ b/docs/CHANGES.txt @@ -7,7 +7,10 @@ bill@newbreedsoftware.com http://www.newbreedsoftware.com/tuxpaint/ -2004.December.5 (0.9.15) +2004.December.10 (0.9.15) + * Hotspot for 'tiny' crosshair mouse pointer shape is now + correct in 16x16 size. + * Somewhat better treatment of wrong-sized images when loading them. It works well for typical kid drawings, as long as objects don't touch the edge of the screen. (the earth and sky -- and anything diff --git a/src/tuxpaint.c b/src/tuxpaint.c index 01c215a4b..bd3c8eca4 100644 --- a/src/tuxpaint.c +++ b/src/tuxpaint.c @@ -21,12 +21,12 @@ along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - June 14, 2002 - November 26, 2004 + June 14, 2002 - December 10, 2004 */ #define VER_VERSION "0.9.15" -#define VER_DATE "2004-11-26" +#define VER_DATE "2004-12-10" //#define VIDEO_BPP 15 // saves memory @@ -5883,7 +5883,7 @@ static void setup(int argc, char * argv[]) cursor_tiny = get_cursor(tiny_bits, tiny_mask_bits, tiny_width, tiny_height, - 3 / scale, 3 / scale); + 3, 3); /* Exactly the same in SMALL (16x16) size! */ do_setcursor(cursor_watch);