diff options
| author | Ray <[email protected]> | 2021-06-10 18:00:44 +0200 |
|---|---|---|
| committer | Ray <[email protected]> | 2021-06-10 18:00:44 +0200 |
| commit | b188008a1c746abf1c086a00708a447c1abbb19b (patch) | |
| tree | a838d6b606d86275e904cd036b4d2ae312c06d27 /src/text.c | |
| parent | 7bc2e922c9a04e9a1bb54088522e0f318feeb17c (diff) | |
| download | raylib-b188008a1c746abf1c086a00708a447c1abbb19b.tar.gz raylib-b188008a1c746abf1c086a00708a447c1abbb19b.zip | |
Review code formatting
Diffstat (limited to 'src/text.c')
| -rw-r--r-- | src/text.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1176,7 +1176,7 @@ const char *TextFormat(const char *text, ...) // We create an array of buffers so strings don't expire until MAX_TEXTFORMAT_BUFFERS invocations static char buffers[MAX_TEXTFORMAT_BUFFERS][MAX_TEXT_BUFFER_LENGTH] = { 0 }; - static int index = 0; + static int index = 0; char *currentBuffer = buffers[index]; memset(currentBuffer, 0, MAX_TEXT_BUFFER_LENGTH); // Clear buffer before using |
