Skip to content

Commit cf20c70

Browse files
committed
Fixed an incorrect comment.
1 parent c65645e commit cf20c70

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

MTADiag/Diag.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,8 +142,8 @@ void Diag::GeneratePaths ( void )
142142
files.push_back ( tempDir + "\\" + logFileName + ".txt" ); // files [0] ... / log file path
143143
files.push_back ( tempDir + "\\tempoutput.txt" ); // general temporary output file for almost everything
144144
files.push_back ( tempDir + "\\MTANightly.exe" ); // filepath for nightly
145-
files.push_back ( tempDir + "\\WMICUni.txt" ); // WMIC command outputs as ASCII; convert to unicode for proper insertion & formatting in the log
146-
files.push_back ( systemRoot + "\\system32\\D3DX9_43.dll" ); // we check for this file to see if DirectX is up to date
145+
files.push_back ( tempDir + "\\WMICUni.txt" ); // WMIC command outputs as Unicode; we convert this file to ASCII for proper insertion & formatting in the log
146+
files.push_back ( systemRoot + "\\system32\\D3DX9_43.dll" ); // we check for the presence of this file to determine if DirectX is up to date
147147

148148
#ifdef DEBUGOUTPUT
149149
for ( int i = 0; i < ( signed ) files.size(); i++ )

0 commit comments

Comments
 (0)