From db5580f1cc5473a04a66b5247865c0f9f8309946 Mon Sep 17 00:00:00 2001 From: Amar Takhar Date: Thu, 6 Mar 2008 17:01:19 +0000 Subject: [PATCH] Make the csri.h header a relative include and wrap it with __WINDOWS__, in the future I'll remove all of these ifdefs and fix the windows vcproj files so we can have the same includes for all operating systems. Originally committed to SVN as r1916. --- aegisub/subtitles_provider_csri.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/aegisub/subtitles_provider_csri.h b/aegisub/subtitles_provider_csri.h index 0d1f349ea..a5dd32b34 100644 --- a/aegisub/subtitles_provider_csri.h +++ b/aegisub/subtitles_provider_csri.h @@ -44,8 +44,12 @@ #ifdef WIN32 #define CSRIAPI #endif -#include "csri/csri.h" +ifdef __WINDOWS__ +#include "../csri/include/csri/csri.h" +#else +#include "csri/csri.h" +#fi ///////////////////////////////////////////////// // Common Subtitles Rendering Interface provider