Register variable out of scope (CV1024) An attempt was made to display a register variable outside the scope of the function containing it. One of the following occurred: ■ The variable was declared as a register variable. Recompile the program with the register declaration removed. ■ The optimizer converted an ordinary variable into a register variable to speed up execution. Recompile the program using the /Od option to turn optimization off. ■ The function was defined with _fastcall, causing parameters to be passed in registers. Remove the _fastcall designation and recompile. -♦-