From beadc0e69b0cf5b34ac6c80d27e62623a9ad4dc5 Mon Sep 17 00:00:00 2001 From: Gregory Hainaut Date: Mon, 28 Mar 2016 16:14:16 +0200 Subject: [PATCH] pcsx2:gif: reset field from the constructor CID 147031 --- pcsx2/Gif_Unit.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcsx2/Gif_Unit.h b/pcsx2/Gif_Unit.h index ecbaa54357..5d26614ccb 100644 --- a/pcsx2/Gif_Unit.h +++ b/pcsx2/Gif_Unit.h @@ -166,7 +166,7 @@ struct Gif_Path { GIF_PATH_STATE state; // Path State Gif_Path_MTVU mtvu; // Must be last for saved states - Gif_Path() {} + Gif_Path() { Reset(); } ~Gif_Path() { _aligned_free(buffer); } void Init(GIF_PATH _idx, u32 _buffSize, u32 _buffSafeZone) {