"array subscript is below array bounds" compilation warning
This commit is contained in:
parent
cef0b6dce0
commit
be0a8cbeab
10
src/tic.c
10
src/tic.c
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue