mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-13 07:58:04 +00:00
Fix generateicon.
git-svn-id: https://svn.eduke32.com/eduke32@2596 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
1824b820e1
commit
c35e1005b0
1 changed files with 1 additions and 1 deletions
|
@ -64,7 +64,7 @@ int main(int argc, char **argv)
|
||||||
|
|
||||||
memset(&icon, 0, sizeof(icon));
|
memset(&icon, 0, sizeof(icon));
|
||||||
|
|
||||||
kpzload(argv[1], icon.pixels, (int32_t*)&bpl, (int32_t*)&icon.width, (int32_t*)&icon.height);
|
kpzload(argv[1], (intptr_t*)&icon.pixels, (int32_t*)&bpl, (int32_t*)&icon.width, (int32_t*)&icon.height);
|
||||||
if (!icon.pixels) {
|
if (!icon.pixels) {
|
||||||
Bfprintf(stderr, "Failure loading %s\n", argv[1]);
|
Bfprintf(stderr, "Failure loading %s\n", argv[1]);
|
||||||
return 1;
|
return 1;
|
||||||
|
|
Loading…
Reference in a new issue