cin_t bug fixed (my excuse is that msvc silently ignores it)

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@2060 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Spoike 2006-03-06 21:14:14 +00:00
parent 66c13f27a5
commit 04e1146318
1 changed files with 2 additions and 2 deletions

View File

@ -811,7 +811,7 @@ typedef enum {
MFT_CIN
} media_filmtype_t;
typedef struct cin_s {
struct cin_s {
//these are the outputs (not always power of two!)
int outtype;
@ -873,7 +873,7 @@ typedef struct cin_s {
//source info
float filmfps;
int num_frames;
} cin_t;
};
cin_t *fullscreenvid;