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;
|
background = DRCBackGround;
|
||||||
DRCBackGround = DRC_SET_ON;
|
DRCBackGround = DRC_SET_ON;
|
||||||
|
|
||||||
|
#ifdef MAGIC_WRAPPER
|
||||||
/* Always reset DRC status to "not running" before calling DRCContinous()
|
/* Always reset DRC status to "not running" before calling DRCContinous()
|
||||||
* directly.
|
* directly.
|
||||||
*/
|
*/
|
||||||
DRCStatus = DRC_NOT_RUNNING;
|
DRCStatus = DRC_NOT_RUNNING;
|
||||||
|
#endif
|
||||||
|
|
||||||
DRCContinuous();
|
DRCContinuous();
|
||||||
DRCBackGround = background;
|
DRCBackGround = background;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue