| 132 | static bool bLogKeyReadDone = false; |
| 133 | |
| 134 | void LogFileTimeUntilFirstKeyReadReset(void) |
| 135 | { |
| 136 | #ifdef LOG_PERF_TIMINGS |
| 137 | LogPerfTimings(); |
| 138 | #endif |
| 139 | |
| 140 | if (!g_fh) |
| 141 | return; |
| 142 | |
| 143 | dwLogKeyReadTickStart = GetTickCount(); |
| 144 | |
| 145 | bLogKeyReadDone = false; |
| 146 | } |
| 147 | |
| 148 | // Log the time from emulation restart/reboot until the first key read: BIT $C000 |
| 149 | // . AZTEC.DSK (DOS 3.3) does prior LDY $C000 reads, but the BIT $C000 is at the "Press any key" message |
no test coverage detected