From 74c8142695df607d253f934519d2a7a209f7764b Mon Sep 17 00:00:00 2001 From: Sjoerd van der Berg Date: Mon, 2 Jun 2003 21:19:08 +0000 Subject: [PATCH] parity table isn't static anymore Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@1035 --- src/cpu/flags.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cpu/flags.cpp b/src/cpu/flags.cpp index 44781cc5..c74b1edf 100644 --- a/src/cpu/flags.cpp +++ b/src/cpu/flags.cpp @@ -544,7 +544,7 @@ again: return false; } -static bool parity_lookup[256] = { +bool parity_lookup[256] = { 1, 0, 0, 1, 0, 1, 1, 0, 0, 1, 1, 0, 1, 0, 0, 1, 0, 1, 1, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 1, 1, 0, 0, 1, 1, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 1, 1, 0,