Browse Source

engine: client: Fix access to uninitialized variable.

pull/2/head
Andrey Akhmichin 2 years ago committed by Alibek Omarov
parent
commit
0d5cd89144
  1. 2
      engine/client/cl_video.c

2
engine/client/cl_video.c

@ -209,7 +209,7 @@ qboolean SCR_PlayCinematic( const char *arg ) @@ -209,7 +209,7 @@ qboolean SCR_PlayCinematic( const char *arg )
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;
}

Loading…
Cancel
Save