removed cast to volatile float

This commit is contained in:
koolsmoky
2003-07-21 14:41:57 +00:00
parent c11ed99fa3
commit 8f32bcb3b3

View File

@@ -586,8 +586,8 @@ _grDrawPoints(FxI32 mode, FxI32 count, void *pointers)
gc->pool.ftemp2 = (const float)y; gc->pool.ftemp2 = (const float)y;
/* Correct the bias to get rid of the fractional bits */ /* Correct the bias to get rid of the fractional bits */
x = (volatile float)gc->pool.ftemp1 - lbias; x = /*(volatile float)*/gc->pool.ftemp1 - lbias;
y = (volatile float)gc->pool.ftemp2 - lbias; y = /*(volatile float)*/gc->pool.ftemp2 - lbias;
/* Lower right corner */ /* Lower right corner */
DA_SETF(x); DA_SETF(x);