- fixed: correct the functionality of the 'min' function in the scaling code
This commit is contained in:
parent
8cb281bf42
commit
fccb0b76c6
1 changed files with 1 additions and 1 deletions
|
|
@ -103,7 +103,7 @@ bool ViewportLinearScale()
|
|||
|
||||
inline int min(int a, int b)
|
||||
{
|
||||
return (a < b) ? a : b;
|
||||
return (a > b) ? a : b;
|
||||
}
|
||||
|
||||
int ViewportScaledWidth(int width, int height)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue