1
0
Fork 0

Give debugger console a name as well

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@2500
This commit is contained in:
Peter Veenstra 2006-02-14 08:51:07 +00:00
parent fd40723fd2
commit 28e87018ac

View file

@ -69,6 +69,7 @@ static void ResizeConsole( HANDLE hConsole, SHORT xSize, SHORT ySize ) {
void WIN32_Console() {
AllocConsole();
SetConsoleTitle("DOSBox Debugger");
ResizeConsole(GetStdHandle(STD_OUTPUT_HANDLE),80,50);
}
#endif