From 3151db54305738e595946b865790d6f0cc19a225 Mon Sep 17 00:00:00 2001 From: Kistaro Windrider Date: Sat, 31 May 2025 22:27:03 -0700 Subject: [PATCH] fix precedence error --- vacuum_gambit.p8 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vacuum_gambit.p8 b/vacuum_gambit.p8 index d255e82..8dcd068 100644 --- a/vacuum_gambit.p8 +++ b/vacuum_gambit.p8 @@ -1533,7 +1533,7 @@ function flotilla:load(ulc_cx, ulc_cy, lvl) -- alternate is requested -- and we allow alternates -- for this type of ship - ship_t+=(uv>>ship_t&0x1)&(f&0x10>>4) + ship_t+=(uv>>ship_t&0x1)&((f&0x10)>>4) add(row, self.ship_bases[ship_t].new{col=cx-ulc_cx}) end end