HYPNO: fixed uninitialized values in ox and oy

This commit is contained in:
neuromancer 2021-11-15 19:42:06 +01:00
parent 44474e8693
commit 67bbf44b6c

View File

@ -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;