Changeset 4 for abuse/trunk/src/imlib/fonts.cpp
- Timestamp:
- Nov 6, 2005, 11:39:38 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
abuse/trunk/src/imlib/fonts.cpp
r2 r4 37 37 void JCFont::put_char(image *screen, int x, int y, char ch, int color) 38 38 { 39 if (let[ ch])39 if (let[(int)ch]) 40 40 { 41 41 if (color>=0) 42 let[ ch]->put_color(screen,x,y,color);43 else let[ ch]->put_image(screen,x,y);42 let[(int)ch]->put_color(screen,x,y,color); 43 else let[(int)ch]->put_image(screen,x,y); 44 44 } 45 45 }
Note: See TracChangeset
for help on using the changeset viewer.