mirror of
https://github.com/AppleWin/AppleWin.git
synced 2026-04-20 15:17:50 +00:00
Debugger: fix console output for 'disk info' cmd
. fix to ConsoleBufferPush() which was skipping a char when the line needed to output to a 2nd line
This commit is contained in:
+1
-1
@@ -106,7 +106,7 @@ std::string Disk2InterfaceCard::FormatPhaseString(float phase)
|
||||
const UINT phaseInt = (UINT)phase;
|
||||
const UINT phaseFrac = (UINT)((phase - (float)phaseInt) * 100 + 0.5);
|
||||
|
||||
return StrFormat("%02X.%2d", phaseInt, phaseFrac); // "$NN.nn"
|
||||
return StrFormat("%02X.%02d", phaseInt, phaseFrac); // "$NN.nn"
|
||||
}
|
||||
|
||||
std::string Disk2InterfaceCard::GetCurrentTrackString(void)
|
||||
|
||||
Reference in New Issue
Block a user