mirror of
https://github.com/nzp-team/quakespasm.git
synced 2024-11-22 11:51:04 +00:00
VITA/NX: Stop forcing extension for Loading Screens
This commit is contained in:
parent
64e73ec672
commit
b0fdf9436a
1 changed files with 1 additions and 2 deletions
|
@ -1239,14 +1239,13 @@ void SCR_DrawLoadScreen (void)
|
||||||
lpath = (char*)Z_Malloc(sizeof(char)*32);
|
lpath = (char*)Z_Malloc(sizeof(char)*32);
|
||||||
strcpy(lpath, "gfx/lscreen/");
|
strcpy(lpath, "gfx/lscreen/");
|
||||||
strcat(lpath, loadname2);
|
strcat(lpath, loadname2);
|
||||||
strcat(lpath, ".tga");
|
|
||||||
|
|
||||||
lscreen = Draw_CachePic(lpath);
|
lscreen = Draw_CachePic(lpath);
|
||||||
//awoo = Draw_CachePic("gfx/menu/awoo.png");
|
//awoo = Draw_CachePic("gfx/menu/awoo.png");
|
||||||
|
|
||||||
if (lscreen == NULL)
|
if (lscreen == NULL)
|
||||||
{
|
{
|
||||||
lscreen = Draw_CachePic("gfx/lscreen/lscreen.tga");
|
lscreen = Draw_CachePic("gfx/lscreen/lscreen");
|
||||||
}
|
}
|
||||||
load_screen_exists = true;
|
load_screen_exists = true;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue