From 0d5cd89144f8a31934ce8f35ea50f0e49aa93294 Mon Sep 17 00:00:00 2001 From: Andrey Akhmichin <15944199+nekonomicon@users.noreply.github.com> Date: Tue, 20 Dec 2022 08:27:02 +0500 Subject: [PATCH] engine: client: Fix access to uninitialized variable. --- engine/client/cl_video.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/client/cl_video.c b/engine/client/cl_video.c index 1b4ad6e5..9a225d0a 100644 --- a/engine/client/cl_video.c +++ b/engine/client/cl_video.c @@ -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; }