Skip to content

Commit

Permalink
- fixed warning in ADLMidi.
Browse files Browse the repository at this point in the history
  • Loading branch information
coelckers committed Jun 24, 2018
1 parent 532fba5 commit 840c2c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sound/adlmidi/adlmidi_midiplay.cpp
Expand Up @@ -2686,7 +2686,7 @@ ADLMIDI_EXPORT void AdlInstrumentTester::NextAdl(int offset)
std::fflush(stderr);
#endif

for(unsigned a = 0, n = P->adl_ins_list.size(); a < n; ++a)
for(unsigned a = 0, n = (unsigned)P->adl_ins_list.size(); a < n; ++a)
{
const unsigned i = P->adl_ins_list[a];
const adlinsdata2 ains(adlins[i]);
Expand Down

0 comments on commit 840c2c8

Please sign in to comment.