Fix for int buffer attribute type;

This commit is contained in:
bjorn 2016-11-14 22:01:44 -08:00
parent 7b81618198
commit 4b177a6a21
1 changed files with 1 additions and 1 deletions

View File

@ -519,7 +519,7 @@ int l_lovrGraphicsNewBuffer(lua_State* L) {
}
*((int*) v) = value;
v = (int*) v + sizeof(int);
v = (char*) v + sizeof(int);
}
}
}