From 529e8da3c74d2be244dc321e3e32aded0b3b8327 Mon Sep 17 00:00:00 2001 From: Toni Wilen Date: Wed, 22 Jun 2016 12:45:45 +0300 Subject: [PATCH] 68030 data cache write allocation check fix. --- newcpu.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/newcpu.cpp b/newcpu.cpp index c017c445..41290911 100644 --- a/newcpu.cpp +++ b/newcpu.cpp @@ -7504,7 +7504,7 @@ static void write_dcache030x(uaecptr addr, uae_u32 val, int size) c1 = getcache030(dcaches030, addr, &tag1, &lws1); // easy one - if (size == 2 && aligned == 0 && wa == 1) { + if (size == 2 && aligned == 0 && wa) { update_cache030(c1, val, tag1, lws1); return; } -- 2.47.3