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_srt.h"
|
||||
#include "subtitle_format_txt.h"
|
||||
#if USE_PRS == 1
|
||||
#include "subtitle_format_prs.h"
|
||||
#endif
|
||||
//#if USE_PRS == 1
|
||||
//#include "subtitle_format_prs.h"
|
||||
//#endif
|
||||
#include "subtitle_format_mkv.h"
|
||||
#include "ass_file.h"
|
||||
|
||||
|
@ -128,9 +128,9 @@ void SubtitleFormat::LoadFormats () {
|
|||
new SRTSubtitleFormat();
|
||||
new TXTSubtitleFormat();
|
||||
new MKVSubtitleFormat();
|
||||
#if USE_PRS == 1
|
||||
new PRSSubtitleFormat();
|
||||
#endif
|
||||
//#if USE_PRS == 1
|
||||
// new PRSSubtitleFormat();
|
||||
//#endif
|
||||
}
|
||||
loaded = true;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue