Fixed hotspot for 'tiny' mouse in 16x16 mouse pointer mode (for OS X).

This commit is contained in:
William Kendrick 2004-12-10 08:45:50 +00:00
parent 1fc0d61949
commit 1a85b0c086
2 changed files with 7 additions and 4 deletions

View file

@ -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

View file

@ -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);