"array subscript is below array bounds" compilation warning

This commit is contained in:
BADIM-PC\Vadim 2017-09-28 17:08:52 +03:00
parent cef0b6dce0
commit be0a8cbeab
1 changed files with 5 additions and 5 deletions

View File

@ -295,10 +295,11 @@ static void channelSfx(tic_mem* memory, s32 index, s32 note, s32 octave, s32 dur
c->volume = volume;
{
struct {s8 speed:SFX_SPEED_BITS;} temp = {speed};
c->speed = speed == temp.speed ? speed : machine->soundSrc->sfx.data[index].speed;
}
if(index >= 0)
{
struct {s8 speed:SFX_SPEED_BITS;} temp = {speed};
c->speed = speed == temp.speed ? speed : machine->soundSrc->sfx.data[index].speed;
}
// start index of idealized piano
enum {PianoStart = -8};
@ -324,7 +325,6 @@ static void resetMusic(tic_mem* memory)
musicSfx(memory, -1, 0, 0, 0, c);
}
static void setMusic(tic_machine* machine, s32 index, s32 frame, s32 row, bool loop)
{
tic_mem* memory = (tic_mem*)machine;