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:
parent
c6971fadae
commit
367d398ac6
3 changed files with 8 additions and 1 deletions
|
@ -594,6 +594,10 @@
|
|||
RelativePath=".\docs\CodingConventions.txt"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\docs\Debugger_Changelog.txt"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\docs\History.txt"
|
||||
>
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -1054,6 +1054,8 @@ bool CSuperSerialCard::CommThInit()
|
|||
0, // dwCreationFlags : 0 = Run immediately
|
||||
&dwThreadId); // lpThreadId
|
||||
|
||||
SetThreadPriority(m_hCommThread, THREAD_PRIORITY_TIME_CRITICAL);
|
||||
|
||||
InitializeCriticalSection(&m_CriticalSection);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue