From 4a833cdb45aaf25b6419217a587816ebab5f5bfa Mon Sep 17 00:00:00 2001 From: Simon Howard Date: Sat, 12 Feb 2011 21:25:18 +0000 Subject: Turn on gcc warnings for declarations made in a block after a statement; this is not supported by the Microsoft compiler. Subversion-branch: /branches/strife-branch Subversion-revision: 2261 --- opl/dbopl.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'opl/dbopl.c') diff --git a/opl/dbopl.c b/opl/dbopl.c index 0c21e0b6..04e37c15 100644 --- a/opl/dbopl.c +++ b/opl/dbopl.c @@ -412,9 +412,8 @@ static void Operator__UpdateRates(Operator *self, const Chip* chip ) { } static inline Bit32s Operator__RateForward(Operator *self, Bit32u add ) { - Bit32s ret; // haleyjd: GNUisms out! self->rateIndex += add; - ret = self->rateIndex >> RATE_SH; + Bit32s ret = self->rateIndex >> RATE_SH; self->rateIndex = self->rateIndex & RATE_MASK; return ret; } -- cgit v1.2.3