aboutsummaryrefslogtreecommitdiff
path: root/src/textures.c
diff options
context:
space:
mode:
authorRay <raysan5@gmail.com>2019-02-21 18:45:19 +0100
committerRay <raysan5@gmail.com>2019-02-21 18:45:19 +0100
commit641895b5ba778fdc9024ebb58446dcc8ea36a00a (patch)
tree7d1fbcca0ae631f318d9c6f6fff6107ffde3ed63 /src/textures.c
parent75298b50fbfe8a8fad9c52c3cd8882072fb1ed36 (diff)
downloadraylib-641895b5ba778fdc9024ebb58446dcc8ea36a00a.tar.gz
raylib-641895b5ba778fdc9024ebb58446dcc8ea36a00a.zip
Remove end-line spaces
Diffstat (limited to 'src/textures.c')
-rw-r--r--src/textures.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/textures.c b/src/textures.c
index 75624fdb..48b89384 100644
--- a/src/textures.c
+++ b/src/textures.c
@@ -2529,7 +2529,7 @@ void DrawTextureQuad(Texture2D texture, Vector2 tiling, Vector2 offset, Rectangl
{
Rectangle source = { offset.x*texture.width, offset.y*texture.height, tiling.x*texture.width, tiling.y*texture.height };
Vector2 origin = { 0.0f, 0.0f };
-
+
DrawTexturePro(texture, source, quad, origin, 0.0f, tint);
}
@@ -3198,7 +3198,7 @@ static int SaveKTX(Image image, const char *fileName)
//unsigned char id[12] = { 0xAB, 0x4B, 0x54, 0x58, 0x20, 0x31, 0x31, 0xBB, 0x0D, 0x0A, 0x1A, 0x0A };
const char ktxIdentifier[12] = { 0xAB, 'K', 'T', 'X', ' ', '1', '1', 0xBB, '\r', '\n', 0x1A, '\n' };
-
+
// Get the image header
strncpy(ktxHeader.id, ktxIdentifier, 12); // KTX 1.1 signature
ktxHeader.endianness = 0;