- fixed: FBufferedUniform1f didn'T work because it used an int as its buffered value.

This commit is contained in:
Christoph Oelckers 2014-06-29 14:08:44 +02:00
commit 9d1dbf4eab
2 changed files with 2 additions and 2 deletions

View file

@ -80,7 +80,7 @@ public:
class FBufferedUniform1f
{
int mBuffer;
float mBuffer;
int mIndex;
public: