diff --git a/Post-Processing-Shaders.md b/Post-Processing-Shaders.md index 86b86ba..181e239 100644 --- a/Post-Processing-Shaders.md +++ b/Post-Processing-Shaders.md @@ -167,7 +167,7 @@ This only works for the Option type configuration option Takes the OptionName that was defined in the configuration - Example ```c++ -if (OptionEnable(BEVEL)) { /* Do Stuff*/ } +if (OptionEnabled(BEVEL)) { /* Do Stuff*/ } ``` *** ```c++