forked from bartvdbraak/blender
- some declaration was missing. Blender runs again at IRIX
This commit is contained in:
parent
314f4db5e4
commit
30cedebbe9
@ -53,6 +53,7 @@ void setscreen(struct bScreen *sc);
|
|||||||
void force_draw_all(void);
|
void force_draw_all(void);
|
||||||
/* otherwise the WHILE_SEQ doesn't work */
|
/* otherwise the WHILE_SEQ doesn't work */
|
||||||
struct Sequence;
|
struct Sequence;
|
||||||
|
struct ListBase;
|
||||||
void build_seqar(struct ListBase *seqbase, struct Sequence ***seqar, int *totseq);
|
void build_seqar(struct ListBase *seqbase, struct Sequence ***seqar, int *totseq);
|
||||||
|
|
||||||
struct ID;
|
struct ID;
|
||||||
|
@ -66,7 +66,7 @@ void force_draw_all(void){}
|
|||||||
/* struct Sequence; */
|
/* struct Sequence; */
|
||||||
|
|
||||||
/* MAART: added "seqar = 0; totseq = 0" because the loader will crash without it. */
|
/* MAART: added "seqar = 0; totseq = 0" because the loader will crash without it. */
|
||||||
void build_seqar(ListBase *seqbase, struct Sequence ***seqar, int *totseq)
|
void build_seqar(struct ListBase *seqbase, struct Sequence ***seqar, int *totseq)
|
||||||
{
|
{
|
||||||
*seqar = 0;
|
*seqar = 0;
|
||||||
*totseq = 0;
|
*totseq = 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user