summaryrefslogtreecommitdiffstats
path: root/Graphics
diff options
context:
space:
mode:
Diffstat (limited to 'Graphics')
-rw-r--r--Graphics/HLSL2GLSLConverterLib/src/HLSL2GLSLConverterImpl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Graphics/HLSL2GLSLConverterLib/src/HLSL2GLSLConverterImpl.cpp b/Graphics/HLSL2GLSLConverterLib/src/HLSL2GLSLConverterImpl.cpp
index 556fb83a..44506ed2 100644
--- a/Graphics/HLSL2GLSLConverterLib/src/HLSL2GLSLConverterImpl.cpp
+++ b/Graphics/HLSL2GLSLConverterLib/src/HLSL2GLSLConverterImpl.cpp
@@ -4110,7 +4110,7 @@ void HLSL2GLSLConverterImpl::ConversionStream::ProcessShaderDeclaration( TokenLi
std::stringstream ReturnHandlerSS;
const Char *ReturnMacroName = "_RETURN_";
// Some GLES compilers cannot properly handle macros with empty argument lists, such as _RETURN_().
- // Also, some compilers generate an error if there is no whitespace after the macro witout arguments: _RET_VAL_{
+ // Also, some compilers generate an error if there is no whitespace after the macro witout arguments: _RETURN_{
ReturnHandlerSS << "#define " << ReturnMacroName << (bIsVoid ? "" : "(_RET_VAL_)") << " {\\\n";
String GlobalVariables, Prologue;