mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-02 23:01:42 +00:00
GRIM: Use floating point division
This commit is contained in:
parent
10f265da58
commit
2c44b2bbdc
@ -1397,7 +1397,7 @@ void GfxTinyGL::drawLine(const PrimitiveObject *primitive) {
|
||||
_zb->writePixel(_gameWidth * y + x1, color.getRed(), color.getGreen(), color.getBlue());
|
||||
}
|
||||
} else {
|
||||
float m = (y2 - y1) / (x2 - x1);
|
||||
float m = (y2 - y1) / (float)(x2 - x1);
|
||||
int b = (int)(-m * x1 + y1);
|
||||
for (int x = x1; x <= x2; x++) {
|
||||
int y = (int)(m * x) + b;
|
||||
|
Loading…
x
Reference in New Issue
Block a user