mirror of
https://github.com/ondra-novak/gates_of_skeldal.git
synced 2025-07-15 18:56:41 -04:00
no loading between levels, many improvements in code
This commit is contained in:
parent
77f1700902
commit
a8a87d514c
55 changed files with 628 additions and 763 deletions
|
@ -1,7 +1,7 @@
|
|||
//!!!! POZOR, NUTNE LINKOVAT SOUBOR LZWA.ASM
|
||||
#ifndef _MGIFMEM_H
|
||||
|
||||
typedef void (*MGIF_PROC)(int,void *,int csize); //prvni cislo akce, druhy data akce
|
||||
typedef void (*MGIF_PROC)(int,const void *,int csize); //prvni cislo akce, druhy data akce
|
||||
|
||||
#define _MGIFMEM_H
|
||||
#define MGIF "MGIF"
|
||||
|
@ -34,7 +34,7 @@ typedef struct mgif_header
|
|||
|
||||
|
||||
void mgif_install_proc(MGIF_PROC proc);
|
||||
void *open_mgif(void *mgif); //vraci ukazatel na prvni frame
|
||||
void *mgif_play(void *mgif); //dekoduje a zobrazi frame
|
||||
const void *open_mgif(const void *mgif); //vraci ukazatel na prvni frame
|
||||
const void *mgif_play(const void *mgif); //dekoduje a zobrazi frame
|
||||
void close_mgif(void); //dealokuje buffery pro prehravani
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue