mirror of
https://github.com/nzp-team/fteqw.git
synced 2024-11-10 22:51:57 +00:00
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:
parent
66c13f27a5
commit
04e1146318
1 changed files with 2 additions and 2 deletions
|
@ -811,7 +811,7 @@ typedef enum {
|
||||||
MFT_CIN
|
MFT_CIN
|
||||||
} media_filmtype_t;
|
} media_filmtype_t;
|
||||||
|
|
||||||
typedef struct cin_s {
|
struct cin_s {
|
||||||
|
|
||||||
//these are the outputs (not always power of two!)
|
//these are the outputs (not always power of two!)
|
||||||
int outtype;
|
int outtype;
|
||||||
|
@ -873,7 +873,7 @@ typedef struct cin_s {
|
||||||
//source info
|
//source info
|
||||||
float filmfps;
|
float filmfps;
|
||||||
int num_frames;
|
int num_frames;
|
||||||
} cin_t;
|
};
|
||||||
|
|
||||||
cin_t *fullscreenvid;
|
cin_t *fullscreenvid;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue