mirror of
https://github.com/ondra-novak/gates_of_skeldal.git
synced 2025-08-22 23:17:24 -04:00
load_section_mem now uses zero copy to receive binary data
This commit is contained in:
parent
9a41bc0f67
commit
3463d8e720
9 changed files with 71 additions and 67 deletions
|
@ -640,9 +640,9 @@ void play_sample_at_channel(int sample,int channel,int vol)
|
|||
}
|
||||
|
||||
|
||||
void create_sound_table(char *template,int32_t size)
|
||||
void create_sound_table(const char *template,int32_t size)
|
||||
{
|
||||
char *c,*s;
|
||||
const char *c,*s;
|
||||
int i=0;
|
||||
|
||||
if (sound_table==NULL) sound_table=create_list(2);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue