Added Debugger_Changelog.txt to VS2005 vcproj

Added SetThreadPriority(THREAD_PRIORITY_TIME_CRITICAL) after creating serial comm thread
Minor update to History.txt
This commit is contained in:
tomch 2009-06-20 14:00:14 +00:00
parent 1c2a115eb5
commit ef672c46ab
3 changed files with 8 additions and 1 deletions

View File

@ -594,6 +594,10 @@
RelativePath=".\docs\CodingConventions.txt"
>
</File>
<File
RelativePath=".\docs\Debugger_Changelog.txt"
>
</File>
<File
RelativePath=".\docs\History.txt"
>

View File

@ -18,7 +18,7 @@ Restrictions/bugs:
- During Mockingboard playback, Speaker emulation isn't precise
1.16.1 - 28 May 2009
1.16.1 - 20 Jun 2009
--------------------
Changes:
. Ctrl-F2 now functions as CONTROL-RESET (same as Ctrl-Break)
@ -42,6 +42,7 @@ Fixes:
. Flash rate for NTSC
. Maximum volume bug when doubling-clicking a .dsk image to execute with AppleWin
. [Bug #14557] Loading serial port# from Registry (caused AppleWin to crash when booting Apple Pascal & other weird crashes)
. [Bug #15394] Audio under-run (set process priority to Above Normal when in non-Full Speed mode)
1.16.0 - 1 Feb 2009 (beta)

View File

@ -1054,6 +1054,8 @@ bool CSuperSerialCard::CommThInit()
0, // dwCreationFlags : 0 = Run immediately
&dwThreadId); // lpThreadId
SetThreadPriority(m_hCommThread, THREAD_PRIORITY_TIME_CRITICAL);
InitializeCriticalSection(&m_CriticalSection);
}