From 2bbb03cd6dcbe051fb2ecbaa67537101f9c6aef2 Mon Sep 17 00:00:00 2001 From: Simon Howard Date: Thu, 22 Feb 2024 22:36:15 -0500 Subject: [PATCH] Oops. This changed the struct field ordering and broke the tables in swgames.c --- src/sw.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sw.h b/src/sw.h index a4a1525..9503feb 100644 --- a/src/sw.h +++ b/src/sw.h @@ -238,9 +238,9 @@ typedef struct { obtype_t type; int x; int orient; - int transform; /* Rotation/mirroring */ int territory_l, territory_r; /* Computer plane territory */ ob_owner_t owner; + int transform; /* Rotation/mirroring */ } original_ob_t; typedef struct obj { /* Object list */