Invalid setting

This warning is generated for some kinds of invalid settings that were ignored by Ultra Fractal 4 and earlier. By generated a warning instead of the Invalid setting error, the compiler still allows the code to be compiled, ensuring backwards compatibility.

Example of code that triggers this warning:

default:
  #maxiter = 100  ; Warning, and this line is ignored

Example of fixed code:

default:
  maxiter = 100

See Also
Warnings