mirror of
https://github.com/joncampbell123/dosbox-x.git
synced 2025-10-14 10:48:18 +08:00
update fonts
This commit is contained in:
@@ -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">
|
||||||
|
@@ -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"
|
||||||
|
47721
include/jega.h
47721
include/jega.h
File diff suppressed because it is too large
Load Diff
@@ -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
|
||||||
|
Reference in New Issue
Block a user