Changeset 15256
- Timestamp:
- 04/14/12 02:50:59 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
titan/titan/sh4port.h
r15253 r15256 487 487 calcautoscale(width, height, mwidth, mheight, &scalewidth, &scaleheight); 488 488 489 if(scalewidth == 0) 489 if(scalewidth == 0) scalewidth = width; 490 490 if(scaleheight == 0) scaleheight = height; 491 491 492 if( width > mwidth) scalewidth = mwidth;493 if( height > mheight) scaleheight = mheight;492 if(scalewidth > mwidth) scalewidth = mwidth; 493 if(scaleheight > mheight) scaleheight = mheight; 494 494 495 495 if(halign == CENTER)
Note: See TracChangeset
for help on using the changeset viewer.