mirror of https://github.com/odrling/Aegisub
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:
parent
fab2bde15c
commit
6a9e0d8d68
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue