Commented out the useless PRS stuff for now, just to simplify building on non-Windows.

Originally committed to SVN as r1197.
This commit is contained in:
Niels Martin Hansen 2007-05-23 23:22:46 +00:00
parent fab2bde15c
commit 6a9e0d8d68

View file

@ -41,9 +41,9 @@
#include "subtitle_format_ass.h" #include "subtitle_format_ass.h"
#include "subtitle_format_srt.h" #include "subtitle_format_srt.h"
#include "subtitle_format_txt.h" #include "subtitle_format_txt.h"
#if USE_PRS == 1 //#if USE_PRS == 1
#include "subtitle_format_prs.h" //#include "subtitle_format_prs.h"
#endif //#endif
#include "subtitle_format_mkv.h" #include "subtitle_format_mkv.h"
#include "ass_file.h" #include "ass_file.h"
@ -128,9 +128,9 @@ void SubtitleFormat::LoadFormats () {
new SRTSubtitleFormat(); new SRTSubtitleFormat();
new TXTSubtitleFormat(); new TXTSubtitleFormat();
new MKVSubtitleFormat(); new MKVSubtitleFormat();
#if USE_PRS == 1 //#if USE_PRS == 1
new PRSSubtitleFormat(); // new PRSSubtitleFormat();
#endif //#endif
} }
loaded = true; loaded = true;
} }