Cleanup: add trailing commas to avoid right shift

This commit is contained in:
2019-04-18 17:17:32 +02:00
parent 098f75897e
commit 4439e5d0ba
43 changed files with 827 additions and 645 deletions

View File

@@ -69,10 +69,12 @@
#include "physics_intern.h"
static float I[4][4] = {{1.0f, 0.0f, 0.0f, 0.0f},
{0.0f, 1.0f, 0.0f, 0.0f},
{0.0f, 0.0f, 1.0f, 0.0f},
{0.0f, 0.0f, 0.0f, 1.0f}};
static float I[4][4] = {
{1.0f, 0.0f, 0.0f, 0.0f},
{0.0f, 1.0f, 0.0f, 0.0f},
{0.0f, 0.0f, 1.0f, 0.0f},
{0.0f, 0.0f, 0.0f, 1.0f},
};
/********************** particle system slot operators *********************/