diff options
| author | Wohlstand <admin@wohlnet.ru> | 2017-11-24 00:57:22 +0300 |
|---|---|---|
| committer | Wohlstand <admin@wohlnet.ru> | 2017-11-24 00:57:22 +0300 |
| commit | d640317366fc1857903c22e4cd54b75aa5ef859c (patch) | |
| tree | de1a53b2a16736a93c4655bcdd71fe16bedbfe2c | |
| parent | 9b668d3a57c61e33ec1432c85a954b46ed45a47a (diff) | |
| download | libADLMIDI-d640317366fc1857903c22e4cd54b75aa5ef859c.tar.gz libADLMIDI-d640317366fc1857903c22e4cd54b75aa5ef859c.tar.bz2 libADLMIDI-d640317366fc1857903c22e4cd54b75aa5ef859c.zip | |
Small bank reading error message fix
| -rw-r--r-- | src/adlmidi_load.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/adlmidi_load.cpp b/src/adlmidi_load.cpp index c53d6fa..5b54609 100644 --- a/src/adlmidi_load.cpp +++ b/src/adlmidi_load.cpp @@ -286,7 +286,7 @@ bool MIDIplay::LoadBank(MIDIplay::fileReader &fr) uint8_t bank_meta[34]; if(fr.read(bank_meta, 1, 34) != 34) { - errorStringOut = "Custom bank: Fail to read melodic bank meta-data!"; + errorStringOut = "Custom bank: Fail to read percussion bank meta-data!"; return false; } uint16_t bank = uint16_t(bank_meta[33]) * 256 + uint16_t(bank_meta[32]); |