From 04e11463187741a3de6fe1e4fcbfb9e8514896c6 Mon Sep 17 00:00:00 2001 From: Spoike Date: Mon, 6 Mar 2006 21:14:14 +0000 Subject: [PATCH] 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 --- engine/client/m_mp3.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/engine/client/m_mp3.c b/engine/client/m_mp3.c index a87def7ea..54626a409 100644 --- a/engine/client/m_mp3.c +++ b/engine/client/m_mp3.c @@ -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;