diff options
| author | raysan5 <[email protected]> | 2020-12-23 15:03:26 +0100 |
|---|---|---|
| committer | raysan5 <[email protected]> | 2020-12-23 15:03:26 +0100 |
| commit | 0a9e0809989dc9239bfb6b3b333fa0e0e4531548 (patch) | |
| tree | feb1c55dc9e94862ea0993bdd42c91997b7199bc /src/textures.c | |
| parent | 547960ca71f4c07c7f0fdd337937ec041f15abff (diff) | |
| download | raylib-0a9e0809989dc9239bfb6b3b333fa0e0e4531548.tar.gz raylib-0a9e0809989dc9239bfb6b3b333fa0e0e4531548.zip | |
Remove trailing spaces
Diffstat (limited to 'src/textures.c')
| -rw-r--r-- | src/textures.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/textures.c b/src/textures.c index 17ed07cf..8b9d38cd 100644 --- a/src/textures.c +++ b/src/textures.c @@ -445,7 +445,7 @@ bool ExportImage(Image image, const char *fileName) if (success != 0) TRACELOG(LOG_INFO, "FILEIO: [%s] Image exported successfully", fileName); else TRACELOG(LOG_WARNING, "FILEIO: [%s] Failed to export image", fileName); - + return success; } @@ -453,7 +453,7 @@ bool ExportImage(Image image, const char *fileName) bool ExportImageAsCode(Image image, const char *fileName) { bool success = false; - + #ifndef TEXT_BYTES_PER_LINE #define TEXT_BYTES_PER_LINE 20 #endif @@ -495,7 +495,7 @@ bool ExportImageAsCode(Image image, const char *fileName) success = SaveFileText(fileName, txtData); RL_FREE(txtData); - + return success; } @@ -2172,7 +2172,7 @@ Color *LoadImagePalette(Image image, int maxPaletteSize, int *colorsCount) UnloadImageColors(pixels); } - + *colorsCount = palCount; return palette; |
