mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2025-03-13 05:32:10 +00:00
Correct pointer offset
This commit is contained in:
parent
12987c20b9
commit
e1a16cbeb2
1 changed files with 1 additions and 1 deletions
|
@ -195,7 +195,7 @@ static void GLSL_ViewMatricesUniformBuffer(const float value[32]) {
|
||||||
{
|
{
|
||||||
//For now just set identity matrices
|
//For now just set identity matrices
|
||||||
Mat4Identity(viewMatrices);
|
Mat4Identity(viewMatrices);
|
||||||
Mat4Identity(viewMatrices + (16 * sizeof(float)));
|
Mat4Identity(viewMatrices + 16);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue