Wrap ass/ass.h with __WINDOWS__ as the UNIX build uses the system version.

Originally committed to SVN as r1904.
This commit is contained in:
Amar Takhar 2008-03-05 16:50:14 +00:00
parent c278baf4ec
commit 896cfc112b
1 changed files with 5 additions and 0 deletions

View File

@ -43,7 +43,12 @@ extern "C" {
#ifdef __VISUALC__
#include "stdint.h"
#endif
#ifdef __WINDOWS__
#include "../libass/ass.h"
#else
#include "ass/ass.h"
#endif
}