diff options
| author | Ray <raysan5@gmail.com> | 2018-10-29 16:39:54 +0100 |
|---|---|---|
| committer | Ray <raysan5@gmail.com> | 2018-10-29 16:39:54 +0100 |
| commit | b051f7778f42cf6b2a3285e01524549c15b41f4e (patch) | |
| tree | 010c5da80bb29800f49f8651412a696f13266a86 /src | |
| parent | 298203a41a53a8b8eb78c51b2d4415b078efa474 (diff) | |
| download | raylib-b051f7778f42cf6b2a3285e01524549c15b41f4e.tar.gz raylib-b051f7778f42cf6b2a3285e01524549c15b41f4e.zip | |
Corrected typo
Diffstat (limited to 'src')
| -rw-r--r-- | src/textures.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/textures.c b/src/textures.c index 4d3917c0..aa9e66f6 100644 --- a/src/textures.c +++ b/src/textures.c @@ -2890,7 +2890,7 @@ static Image LoadPKM(const char *fileName) // Get the image header fread(&pkmHeader, sizeof(PKMHeader), 1, pkmFile); - if ((pkmHeader.id[0] != 'P') || (pkmHeader.id[1] != 'K') || (pkmHeader.id[2] != 'M') || (ddsHeaderId[3] != ' ')) + if ((pkmHeader.id[0] != 'P') || (pkmHeader.id[1] != 'K') || (pkmHeader.id[2] != 'M') || (pkmHeader.id[3] != ' ')) { TraceLog(LOG_WARNING, "[%s] PKM file does not seem to be a valid image", fileName); } |
