mirror of
https://github.com/ondra-novak/gates_of_skeldal.git
synced 2025-07-13 18:02:01 -04:00
libs compiles
This commit is contained in:
parent
1b0f7fe0c2
commit
a7278bac40
121 changed files with 1528 additions and 1731 deletions
|
@ -1,11 +1,11 @@
|
|||
#include <string.h>
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include "WAV_MEM.H"
|
||||
#include "wav_mem.h"
|
||||
|
||||
char *find_chunk(char *wav,char *name)
|
||||
{
|
||||
long next;
|
||||
int32_t next;
|
||||
|
||||
wav+=12;
|
||||
do
|
||||
|
@ -20,7 +20,7 @@ char *find_chunk(char *wav,char *name)
|
|||
|
||||
int get_chunk_size(char *wav)
|
||||
{
|
||||
long size;
|
||||
int32_t size;
|
||||
|
||||
memcpy(&size,wav,4);
|
||||
return(size);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue