Core: Remove sleep on stepping.

This doesn't seem needed and has been there since day 1.
This commit is contained in:
Unknown W. Brackets 2018-04-30 20:40:09 -07:00
parent 97b0c17038
commit ffa4c18f6c

View file

@ -329,7 +329,6 @@ void Core_Run(GraphicsContext *ctx) {
void Core_EnableStepping(bool step) {
if (step) {
sleep_ms(1);
host->SetDebugMode(true);
Core_UpdateState(CORE_STEPPING);
steppingCounter++;