From 67bbf44b6cdf540814ca6ff49ba9b1faea5c338c Mon Sep 17 00:00:00 2001 From: neuromancer Date: Mon, 15 Nov 2021 19:42:06 +0100 Subject: [PATCH] HYPNO: fixed uninitialized values in ox and oy --- engines/hypno/spider/arcade.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/engines/hypno/spider/arcade.cpp b/engines/hypno/spider/arcade.cpp index d33c0f8c737..7b389ec06e6 100644 --- a/engines/hypno/spider/arcade.cpp +++ b/engines/hypno/spider/arcade.cpp @@ -58,8 +58,8 @@ void SpiderEngine::drawShoot(const Common::Point &target) { } void SpiderEngine::drawPlayer() { - uint32 ox; - uint32 oy; + uint32 ox = 0; + uint32 oy = 0; if (_arcadeMode == "YC") { ox = 0;