From 43fdc1bb56549c10b375ae7f3119277a5c0e99c9 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sun, 7 Nov 2021 23:33:39 +0100 Subject: [PATCH] - Exhumed: fixed uninitialized variable in bullet code. --- source/games/exhumed/src/bullet.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/games/exhumed/src/bullet.cpp b/source/games/exhumed/src/bullet.cpp index bc426a420..21fcd1554 100644 --- a/source/games/exhumed/src/bullet.cpp +++ b/source/games/exhumed/src/bullet.cpp @@ -707,7 +707,7 @@ DExhumedActor* BuildBullet(DExhumedActor* pActor, int nType, int nZOffset, int n pBulletSprite->z += nZOffset; pBulletSprite->backuppos(); - int var_18; + int var_18 = 0; nSector = pBulletSprite->sectnum;