mirror of
https://github.com/RetroDECK/Supermodel.git
synced 2024-11-22 13:55:38 +00:00
New engine: modf -> std::modf (fixes compilation on gcc)
This commit is contained in:
parent
1a908dd414
commit
2ee0d9018e
|
@ -828,10 +828,10 @@ void CNew3D::OffsetTexCoords(R3DPoly& r3dPoly, float offset[2])
|
|||
bool fractMin;
|
||||
bool fractMax;
|
||||
|
||||
fTemp = modf(min, &iTemp);
|
||||
fTemp = std::modf(min, &iTemp);
|
||||
fractMin = fTemp > 0;
|
||||
|
||||
fTemp = modf(max, &iTemp);
|
||||
fTemp = std::modf(max, &iTemp);
|
||||
fractMax = fTemp > 0;
|
||||
|
||||
for (int j = 0; j < r3dPoly.number && min != max; j++) {
|
||||
|
|
Loading…
Reference in a new issue