mirror of https://github.com/odrling/Aegisub
Stop importing msxml.dll when it's not needed anyway, and a string literal was not marked with _T() when it should.
Originally committed to SVN as r1985.
This commit is contained in:
parent
79b82b9167
commit
c6a1b9649b
|
@ -102,7 +102,7 @@ void GetSubFileNames(CString fn, CAtlArray<CString>& paths, CAtlArray<SubFile>&
|
|||
|
||||
bool fEmpty = true;
|
||||
|
||||
if((hFile = FindFirstFile(path + title + "*", &wfd)) != INVALID_HANDLE_VALUE)
|
||||
if((hFile = FindFirstFile(path + title + _T("*"), &wfd)) != INVALID_HANDLE_VALUE)
|
||||
{
|
||||
do
|
||||
{
|
||||
|
|
|
@ -39,5 +39,4 @@
|
|||
// TODO: reference additional headers your program requires here
|
||||
|
||||
#include <streams.h>
|
||||
#import "msxml.dll"
|
||||
#include "..\DSUtil\DSUtil.h"
|
||||
|
|
Loading…
Reference in New Issue