VITA/NX: Stop forcing extension for Loading Screens

This commit is contained in:
Ian 2023-04-04 14:38:47 -04:00 committed by GitHub
parent 64e73ec672
commit b0fdf9436a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -1239,14 +1239,13 @@ void SCR_DrawLoadScreen (void)
lpath = (char*)Z_Malloc(sizeof(char)*32);
strcpy(lpath, "gfx/lscreen/");
strcat(lpath, loadname2);
strcat(lpath, ".tga");
lscreen = Draw_CachePic(lpath);
//awoo = Draw_CachePic("gfx/menu/awoo.png");
if (lscreen == NULL)
{
lscreen = Draw_CachePic("gfx/lscreen/lscreen.tga");
lscreen = Draw_CachePic("gfx/lscreen/lscreen");
}
load_screen_exists = true;