Corrected an error in which DRCStatus is set outside of an #ifdef
for MAGIC_WRAPPER, which is required.
This commit is contained in:
parent
eda5f506f3
commit
8798a3256c
|
|
@ -909,10 +909,14 @@ DRCCatchUp()
|
|||
|
||||
background = DRCBackGround;
|
||||
DRCBackGround = DRC_SET_ON;
|
||||
|
||||
#ifdef MAGIC_WRAPPER
|
||||
/* Always reset DRC status to "not running" before calling DRCContinous()
|
||||
* directly.
|
||||
*/
|
||||
DRCStatus = DRC_NOT_RUNNING;
|
||||
#endif
|
||||
|
||||
DRCContinuous();
|
||||
DRCBackGround = background;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue