mirror of
https://github.com/AppleWin/AppleWin.git
synced 2025-01-11 05:29:55 +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"
|
RelativePath=".\source\Log.cpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\source\Log.h"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath=".\source\Memory.cpp"
|
RelativePath=".\source\Memory.cpp"
|
||||||
>
|
>
|
||||||
|
@ -1444,7 +1444,7 @@ int GetDisassemblyLine( WORD nBaseAddress, DisasmLine_t & line_ )
|
|||||||
}
|
}
|
||||||
|
|
||||||
int nSpaces = strlen( line_.sOpCodes );
|
int nSpaces = strlen( line_.sOpCodes );
|
||||||
while (nSpaces < nMinBytesLen)
|
while (nSpaces < (int)nMinBytesLen)
|
||||||
{
|
{
|
||||||
strcat( line_.sOpCodes, " " );
|
strcat( line_.sOpCodes, " " );
|
||||||
nSpaces++;
|
nSpaces++;
|
||||||
|
@ -95,7 +95,7 @@ void PrintUpdate(DWORD totalcycles)
|
|||||||
{
|
{
|
||||||
return;
|
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)
|
// inactive, so close the file (next print will overwrite it)
|
||||||
ClosePrint();
|
ClosePrint();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user