dda.c: remove the hack to set a minimum delay.

This in no longer needed, as the timer handles very short delays
now properly.
This commit is contained in:
Markus Hitter 2011-12-12 00:44:42 +01:00
parent 07fcff1661
commit 25b72b4ea3
1 changed files with 0 additions and 2 deletions

2
dda.c
View File

@ -802,8 +802,6 @@ void dda_step(DDA *dda) {
dda->c = c_candidate;
}
}
if (dda->c == 0) dda->c = 10000; // hack, as we currently need another timer
// set after everything is done.
dda->c <<= 8;
#endif