From b98c96e4d042319d06b99acc053770f939f3dadc Mon Sep 17 00:00:00 2001 From: Sanaki Date: Tue, 17 Nov 2020 01:57:20 +0000 Subject: [PATCH] Fix state loading Restores an offset increment mistakenly removed in e7ff65aa3a33f2ed70a98b8f17f4408551e995a4. --- core/ProSystem.c | 1 + 1 file changed, 1 insertion(+) diff --git a/core/ProSystem.c b/core/ProSystem.c index a6e0d84..1f7290c 100644 --- a/core/ProSystem.c +++ b/core/ProSystem.c @@ -193,6 +193,7 @@ bool prosystem_Load(const char *buffer) return false; } offset += 16; + buffer[offset++]; for(index = 0; index < 4; index++); offset += 4;