From 06e651026a9bece5a2ed37b47bcf5cc28f674b30 Mon Sep 17 00:00:00 2001 From: Gerry Stellenberg Date: Sun, 21 Nov 2010 15:06:53 -0600 Subject: [PATCH] Fixed a number decoding mistake for wpc95 games --- src/pinproc.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/pinproc.cpp b/src/pinproc.cpp index c8f11ec..759333a 100644 --- a/src/pinproc.cpp +++ b/src/pinproc.cpp @@ -401,7 +401,8 @@ PR_EXPORT uint16_t PRDecode(PRMachineType machineType, const char *str) else if (x <= 44) { if (machineType == kPRMachineWPC95) - return x + 7; + //return x + 7; + return x + 31; else return x + 107; // WPC 37-44 use 8-driver board (mapped to drivers 144-151) }