Changeset 54 for trunk/orca/gl/ttf_load.c
- Timestamp:
- 02/17/06 15:30:01 (3 years ago)
- Files:
-
- 1 modified
-
trunk/orca/gl/ttf_load.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/orca/gl/ttf_load.c
r37 r54 636 636 tf = &res->tfont; 637 637 638 psize = (a1 + 2)->integer;638 psize = orInt(a1 + 2); 639 639 if( psize < 1 ) 640 640 psize = 20; … … 657 657 if( arg->type == OT_INTEGER ) 658 658 { 659 tf->tex_width = arg->integer;660 tf->tex_height = arg->integer;659 tf->tex_width = orInt(arg); 660 tf->tex_height = orInt(arg); 661 661 } 662 662 else
