From bee3321ec44cbadf669987d81477b9a4313e1981 Mon Sep 17 00:00:00 2001 From: Johannes Schickel Date: Fri, 12 Mar 2010 13:10:37 +0000 Subject: This hopefully fixes building on win64. svn-id: r48245 --- sound/softsynth/opl/dbopl.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sound/softsynth/opl/dbopl.cpp b/sound/softsynth/opl/dbopl.cpp index 49a5993d24..1170469ecd 100644 --- a/sound/softsynth/opl/dbopl.cpp +++ b/sound/softsynth/opl/dbopl.cpp @@ -1452,7 +1452,7 @@ void InitTables( void ) { //Add back the bits for highest ones if ( i >= 16 ) index += 9; - Bitu blah = reinterpret_cast( &(chip->chan[ index ]) ); + Bitu blah = reinterpret_cast( &(chip->chan[ index ]) ); ChanOffsetTable[i] = blah; } //Same for operators @@ -1467,7 +1467,7 @@ void InitTables( void ) { chNum += 16 - 12; Bitu opNum = ( i % 8 ) / 3; DBOPL::Channel* chan = 0; - Bitu blah = reinterpret_cast( &(chan->op[opNum]) ); + Bitu blah = reinterpret_cast( &(chan->op[opNum]) ); OpOffsetTable[i] = ChanOffsetTable[ chNum ] + blah; } #if 0 -- cgit v1.2.3