mirror of
https://github.com/AppleWin/AppleWin.git
synced 2024-12-23 16:30:23 +00:00
Added Log.h to the project.
Fixed warning in Debugger_Display.cpp. Changed printing timeout to 10 seconds. (No rush to type PR#0!) Added SVN ignores for Release, Debug, *.user, *.ncb, *.suo.
This commit is contained in:
parent
19174f1bdd
commit
cd26e98358
@ -286,6 +286,10 @@
|
||||
RelativePath=".\source\Log.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\source\Log.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\source\Memory.cpp"
|
||||
>
|
||||
|
@ -1444,7 +1444,7 @@ int GetDisassemblyLine( WORD nBaseAddress, DisasmLine_t & line_ )
|
||||
}
|
||||
|
||||
int nSpaces = strlen( line_.sOpCodes );
|
||||
while (nSpaces < nMinBytesLen)
|
||||
while (nSpaces < (int)nMinBytesLen)
|
||||
{
|
||||
strcat( line_.sOpCodes, " " );
|
||||
nSpaces++;
|
||||
|
@ -95,7 +95,7 @@ void PrintUpdate(DWORD totalcycles)
|
||||
{
|
||||
return;
|
||||
}
|
||||
if ((inactivity += totalcycles) > (5 * 1000 * 1000)) // around 5 seconds
|
||||
if ((inactivity += totalcycles) > (10 * 1000 * 1000)) // around 10 seconds
|
||||
{
|
||||
// inactive, so close the file (next print will overwrite it)
|
||||
ClosePrint();
|
||||
|
Loading…
Reference in New Issue
Block a user