Let it compile on archs where char defaults to unsigned (powerpc).

This commit is contained in:
kili 2011-04-02 09:57:23 +00:00
parent bf26c53ae2
commit 414f8a0625

View File

@ -0,0 +1,12 @@
$OpenBSD: patch-src_CReplayData_h,v 1.1 2011/04/02 09:57:23 kili Exp $
--- src/CReplayData.h.orig Sun Feb 13 18:22:21 2011
+++ src/CReplayData.h Sat Apr 2 00:40:39 2011
@@ -6,7 +6,7 @@ class ReplayData
FILE *fp;
int index;
- char data[DATA_LENGTH][CONTROL::MAX];
+ signed char data[DATA_LENGTH][CONTROL::MAX];
bool endOfReplay;