From 4f3b12cded7f69845ade0d9b7dd36ea3c8ffc6f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Oliva?= Date: Tue, 11 Jan 2022 08:43:38 +0100 Subject: [PATCH] fix crash on audio --- pico8_ps4/audio.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pico8_ps4/audio.h b/pico8_ps4/audio.h index 975f14e..00b4511 100644 --- a/pico8_ps4/audio.h +++ b/pico8_ps4/audio.h @@ -73,7 +73,7 @@ typedef struct { char detune; char reverb; char dampen; - char speed; + unsigned char speed; char loopStart; char loopEnd; P8_Note notes[NOTE_AMOUNT];