Explorar el Código

Fix numerical rollover in audio memory management

main
PaulStoffregen hace 7 años
padre
commit
4e180ad26e
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      teensy3/AudioStream.cpp

+ 1
- 1
teensy3/AudioStream.cpp Ver fichero

@@ -92,7 +92,7 @@ audio_block_t * AudioStream::allocate(void)
uint32_t n, index, avail;
uint32_t *p, *end;
audio_block_t *block;
uint8_t used;
uint32_t used;

p = memory_pool_available_mask;
end = p + NUM_MASKS;

Cargando…
Cancelar
Guardar