Skip to content

Commit 45efe70

Browse files
authored
Merge pull request #6 from Nico8340/notepad
Notepad
2 parents 633a433 + f19937d commit 45efe70

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Diag.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -312,13 +312,13 @@ void Diag::Begin ( void )
312312
std::cout << PasteBinResult << std::endl;
313313
}
314314
}
315-
else // upload failure, open the log in WordPad so the user can copy & paste it themselves
315+
else // upload failure, open the log in Notepad so the user can copy & paste it themselves
316316
{
317317
std::cout << std::endl << std::endl << "Failed to upload log file to MTA Pastebin." << std::endl;
318318
std::cout << "Error code: \"" << PasteBinResult << "\"" << std::endl;
319-
std::cout << "Please paste the contents of the opened Wordpad window at https://pastebin.mtasa.com" << std::endl;
319+
std::cout << "Please paste the contents of the opened Notepad window at https://pastebin.mtasa.com" << std::endl;
320320
std::cout << "Include the MTA Pastebin link in your forum post." << std::endl << std::endl;
321-
ShellExecuteA ( NULL, "open", "wordpad.exe", QuoteFilename( files[FILE_LOG] ).c_str(), NULL, SW_SHOW );
321+
ShellExecuteA ( NULL, "open", "notepad.exe", QuoteFilename( files[FILE_LOG] ).c_str(), NULL, SW_SHOW );
322322
}
323323
}
324324

0 commit comments

Comments
 (0)