update pointer alignment rule

This commit is contained in:
2025-09-09 16:17:02 +02:00
parent c339accedc
commit cfad7f6fdc
19 changed files with 50 additions and 50 deletions

View File

@@ -8,7 +8,7 @@
#define AUDIO_MAX 4 // maximum number of sound effects that are allowed to play at once
struct audiodata {
u8 const* buf; // pointer to the audio buffer
const u8 *buf; // pointer to the audio buffer
u32 len; // length in bytes of the audio buffer
u32 ms; // length in miliseconds of the audio buffer
};