update fonts

This commit is contained in:
Wengier
2021-06-05 16:15:47 -04:00
parent 9e8ff116e0
commit 68a60870e0
4 changed files with 24167 additions and 23572 deletions

View File

@@ -10,7 +10,7 @@
<category>Emulation</category> <category>Emulation</category>
</categories> </categories>
<releases> <releases>
<release version="@PACKAGE_VERSION@" date="2021-5-31"/> <release version="@PACKAGE_VERSION@" date="2021-6-5"/>
</releases> </releases>
<screenshots> <screenshots>
<screenshot type="default"> <screenshot type="default">

View File

@@ -1,4 +1,4 @@
/*auto-generated*/ /*auto-generated*/
#define UPDATED_STR "May 31, 2021 6:30:11pm" #define UPDATED_STR "Jun 5, 2021 4:13:31pm"
#define GIT_COMMIT_HASH "9f987d5" #define GIT_COMMIT_HASH "9e8ff11"
#define COPYRIGHT_END_YEAR "2021" #define COPYRIGHT_END_YEAR "2021"

File diff suppressed because it is too large Load Diff

View File

@@ -67,12 +67,18 @@ static void ResizeConsole( HANDLE hConsole, SHORT xSize, SHORT ySize ) {
// If the Current Buffer *is* the Size we want, Don't do anything! // If the Current Buffer *is* the Size we want, Don't do anything!
return; return;
} }
#ifndef ENABLE_VIRTUAL_TERMINAL_PROCESSING
#define ENABLE_VIRTUAL_TERMINAL_PROCESSING 0x0004
#endif
void DEBUG_ShowMsg(char const* format,...);
void WIN32_Console() { void WIN32_Console() {
AllocConsole(); AllocConsole();
SetConsoleTitle("DOSBox-X Debugger"); SetConsoleTitle("DOSBox-X Debugger");
ResizeConsole(GetStdHandle(STD_OUTPUT_HANDLE),80,50); HANDLE hOut = GetStdHandle(STD_OUTPUT_HANDLE);
DWORD dwMode = 0;
if (GetConsoleMode(hOut, &dwMode)) SetConsoleMode(hOut, dwMode | ENABLE_VIRTUAL_TERMINAL_PROCESSING);
ResizeConsole(hOut,80,50);
} }
#endif #endif