mirror of
https://github.com/UberGames/lilium-voyager.git
synced 2024-11-10 06:31:47 +00:00
OpenGL2: Prioritize loading .png images over all others besides .dds.
This commit is contained in:
parent
ffcec94f50
commit
8955752457
1 changed files with 1 additions and 1 deletions
|
@ -2272,10 +2272,10 @@ typedef struct
|
|||
// when there are multiple images of different formats available
|
||||
static imageExtToLoaderMap_t imageLoaders[ ] =
|
||||
{
|
||||
{ "png", R_LoadPNG },
|
||||
{ "tga", R_LoadTGA },
|
||||
{ "jpg", R_LoadJPG },
|
||||
{ "jpeg", R_LoadJPG },
|
||||
{ "png", R_LoadPNG },
|
||||
{ "pcx", R_LoadPCX },
|
||||
{ "bmp", R_LoadBMP }
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue