Commit 36254a07 authored by norvell's avatar norvell
Browse files

Correct sign of azimuth->panning conversion

parent dffc9b8b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -465,7 +465,7 @@ void TDREND_Update_object_positions(
            if ( hIsmMetaData[nS]->non_diegetic_flag )
            {
                Pos[0] = 0;
                Pos[1] = -hIsmMetaData[nS]->azimuth / 90.f;
                Pos[1] = hIsmMetaData[nS]->azimuth / 90.f;
                Pos[2] = 0;
                TDREND_MIX_SRC_SetPos( hBinRendererTd, nS, Pos );
                TDREND_MIX_SRC_SetPlayState( hBinRendererTd, nS, TDREND_PLAYSTATUS_PLAYING_NON_DIEGETIC );