Corrected an error in which DRCStatus is set outside of an #ifdef

for MAGIC_WRAPPER, which is required.
This commit is contained in:
Tim Edwards 2023-10-12 15:14:13 -04:00
parent eda5f506f3
commit 8798a3256c
2 changed files with 5 additions and 1 deletions

View File

@ -1 +1 @@
8.3.437 8.3.438

View File

@ -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;
} }