mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-11 15:22:15 +00:00
- fixed some signedness warnings in OPL code.
This commit is contained in:
parent
96d328de9b
commit
a48a3d0abf
2 changed files with 4 additions and 5 deletions
|
@ -36,7 +36,7 @@
|
|||
musicBlock::musicBlock ()
|
||||
{
|
||||
memset (this, 0, sizeof(*this));
|
||||
for(auto &voice : voices) voice.index = -1; // mark all free.
|
||||
for(auto &voice : voices) voice.index = ~0u; // mark all free.
|
||||
}
|
||||
|
||||
musicBlock::~musicBlock ()
|
||||
|
@ -53,7 +53,7 @@ int musicBlock::releaseVoice(uint32_t slot, uint32_t killed)
|
|||
{
|
||||
struct OPLVoice *ch = &voices[slot];
|
||||
io->WriteFrequency(slot, ch->note, ch->pitch, 0);
|
||||
ch->index = -1;
|
||||
ch->index = ~0u;
|
||||
if (killed) io->MuteChannel(slot);
|
||||
return slot;
|
||||
}
|
||||
|
@ -68,7 +68,7 @@ int musicBlock::findFreeVoice()
|
|||
{
|
||||
for (uint32_t i = 0; i < io->NumChannels; ++i)
|
||||
{
|
||||
if (voices[i].index == -1)
|
||||
if (voices[i].index == ~0u)
|
||||
{
|
||||
releaseVoice(i, 1);
|
||||
return i;
|
||||
|
@ -185,7 +185,6 @@ void musicBlock::noteOn(uint32_t channel, uint8_t key, int volume)
|
|||
noteOff(channel, key);
|
||||
return;
|
||||
}
|
||||
uint32_t note;
|
||||
GenMidiInstrument *instrument;
|
||||
|
||||
// Percussion channel is treated differently.
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
|
||||
struct OPLVoice
|
||||
{
|
||||
int index; // Index of this voice, or -1 if not in use.
|
||||
unsigned int index; // Index of this voice, or -1 if not in use.
|
||||
unsigned int key; // The midi key that this voice is playing.
|
||||
unsigned int note; // The note being played. This is normally the same as the key, but if the instrument is a fixed pitch instrument, it is different.
|
||||
unsigned int note_volume; // The volume of the note being played on this channel.
|
||||
|
|
Loading…
Reference in a new issue