Skip to content

Commit

Permalink
fix warning
Browse files Browse the repository at this point in the history
  • Loading branch information
jarikomppa committed Apr 27, 2015
1 parent 64994f5 commit 4483d48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/audiosource/monotone/soloud_monotone.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ namespace SoLoud
unsigned int i;
for (i = 0; i < 12; i++)
{
mOutput[i].mEnabled = i < mParent->mHardwareChannels && i < mParent->mSong.mTotalTracks;
mOutput[i].mEnabled = i < (unsigned int)mParent->mHardwareChannels && i < (unsigned int)mParent->mSong.mTotalTracks;
}
for (i = 0; i < aSamples; i++)
{
Expand Down

0 comments on commit 4483d48

Please sign in to comment.