From 87833ef73ea51adc0e61172b96b403a9e209ba0c Mon Sep 17 00:00:00 2001 From: Sonicadvance1 Date: Sat, 11 Oct 2014 12:59:56 -0700 Subject: [PATCH] Typo fix. --- Post-Processing-Shaders.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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++