Do not use texture compression on GUI images. Patch by zaaak@laposte.net. Closes ticket:4086

master
per 2013-10-13 23:27:44 +02:00
parent 0c75c0a0bb
commit 151a6a5084
1 changed files with 1 additions and 1 deletions

View File

@ -270,7 +270,7 @@ IMAGEFILE *iV_LoadImageFile(const char *fileName)
char arbitraryName[256];
ssprintf(arbitraryName, "%s-%03u", fileName, p);
// Now we can set imageFile->pages[p].id. This free()s the ivImages[p].bmp array!
imageFile->pages[p].id = pie_AddTexPage(&ivImages[p], arbitraryName, true);
imageFile->pages[p].id = pie_AddTexPage(&ivImages[p], arbitraryName, false);
}
// duplicate some data, since we want another access point to these data structures now, FIXME