Browse Source

uncommented a bit that was done up for debugging/testing

Areloch 6 years ago
parent
commit
446d094b03
1 changed files with 2 additions and 2 deletions
  1. 2 2
      Engine/source/gfx/genericConstBuffer.cpp

+ 2 - 2
Engine/source/gfx/genericConstBuffer.cpp

@@ -281,8 +281,8 @@ void GenericConstBuffer::assertUnassignedConstants( const char *shaderName )
       mLayout->getDesc( i, pd );
 
       // Assert on the unassigned constant.
-      //AssertFatal( false, avar( "The '%s' shader constant in shader '%s' was unassigned!",
-      //   pd.name.c_str(), shaderName ) );
+      AssertFatal( false, avar( "The '%s' shader constant in shader '%s' was unassigned!",
+         pd.name.c_str(), shaderName ) );
    }
 }