From 8f32bcb3b30cdeb2b30b3da04e7c39c360bea24c Mon Sep 17 00:00:00 2001 From: koolsmoky <> Date: Mon, 21 Jul 2003 14:41:57 +0000 Subject: [PATCH] removed cast to volatile float --- glide3x/h5/glide3/src/gdraw.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/glide3x/h5/glide3/src/gdraw.c b/glide3x/h5/glide3/src/gdraw.c index d19e339..4c82563 100644 --- a/glide3x/h5/glide3/src/gdraw.c +++ b/glide3x/h5/glide3/src/gdraw.c @@ -586,8 +586,8 @@ _grDrawPoints(FxI32 mode, FxI32 count, void *pointers) gc->pool.ftemp2 = (const float)y; /* Correct the bias to get rid of the fractional bits */ - x = (volatile float)gc->pool.ftemp1 - lbias; - y = (volatile float)gc->pool.ftemp2 - lbias; + x = /*(volatile float)*/gc->pool.ftemp1 - lbias; + y = /*(volatile float)*/gc->pool.ftemp2 - lbias; /* Lower right corner */ DA_SETF(x);