no loading between levels, many improvements in code

This commit is contained in:
Ondřej Novák 2025-01-31 18:54:59 +01:00
parent 77f1700902
commit a8a87d514c
55 changed files with 628 additions and 763 deletions

View file

@ -12,9 +12,9 @@ typedef struct t_wave
int32_t freq,bps;
}T_WAVE;
char *find_chunk(char *wav,char *name);
int get_chunk_size(char *wav);
int read_chunk(char *wav,void *mem);
const char *find_chunk(const char *wav,char *name);
int get_chunk_size(const char *wav);
int read_chunk(const char *wav,void *mem);
#endif