Changeset 357
- Timestamp:
- Jan 21, 2004, 2:49:26 PM (19 years ago)
- Location:
- libcaca/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
libcaca/trunk/THANKS
r355 r357 4 4 Gildas Bazin <gbazin@netcourrier.com> - win32 driver improvements 5 5 Jan Hubicka <hubicka@freesoft.cz> - aafire 6 Ladislav Hagara <hgr@vabo.cz> - Source Mage spell 6 7 Michele Bini <mibin@tin.it> - original SDL plasma 7 8 Philip Balinov - Slackware package -
libcaca/trunk/src/event.c
r354 r357 279 279 / x11_font_height; 280 280 281 if( w == _caca_width && h == _caca_height)281 if(!w || !h || (w == _caca_width && h == _caca_height)) 282 282 continue; 283 283 … … 371 371 { 372 372 _caca_resize_event = 0; 373 _caca_resize = 1; 373 374 return CACA_EVENT_RESIZE; 374 375 } … … 554 555 { 555 556 _caca_resize_event = 0; 557 _caca_resize = 1; 556 558 return CACA_EVENT_RESIZE; 557 559 } … … 724 726 static void _push_event(unsigned int event) 725 727 { 726 if( events == EVENTBUF_LEN)728 if(!event || events == EVENTBUF_LEN) 727 729 return; 728 730 eventbuf[events] = event; -
libcaca/trunk/src/graphics.c
r354 r357 444 444 if(x < 0) 445 445 { 446 if(len < (unsigned int)-x) 447 return; 446 448 len -= -x; 447 if(len < 0)448 return;449 449 s += -x; 450 450 x = 0;
Note: See TracChangeset
for help on using the changeset viewer.