engine: client: Fix access to uninitialized variable.
This commit is contained in:
parent
e273e09fc9
commit
0d5cd89144
1 changed files with 1 additions and 1 deletions
|
@ -209,7 +209,7 @@ qboolean SCR_PlayCinematic( const char *arg )
|
||||||
|
|
||||||
if( FS_FileExists( arg, false ) && !fullpath )
|
if( FS_FileExists( arg, false ) && !fullpath )
|
||||||
{
|
{
|
||||||
Con_Printf( S_ERROR "Couldn't load %s from packfile. Please extract it\n", path );
|
Con_Printf( S_ERROR "Couldn't load %s from packfile. Please extract it\n", arg );
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue