diff --git a/ApplewinExpress.vcproj b/ApplewinExpress.vcproj index b357362e..2156af57 100644 --- a/ApplewinExpress.vcproj +++ b/ApplewinExpress.vcproj @@ -286,6 +286,10 @@ RelativePath=".\source\Log.cpp" > + + diff --git a/source/Debugger_Display.cpp b/source/Debugger_Display.cpp index 0d8cd1dd..9534ed89 100644 --- a/source/Debugger_Display.cpp +++ b/source/Debugger_Display.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++; diff --git a/source/ParallelPrinter.cpp b/source/ParallelPrinter.cpp index e74cb836..37f28cfd 100644 --- a/source/ParallelPrinter.cpp +++ b/source/ParallelPrinter.cpp @@ -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();