From f21abaec0a1a411e6836cc6f7676f9dc84cafb04 Mon Sep 17 00:00:00 2001 From: Anders Jenbo Date: Tue, 6 Oct 2020 21:03:15 +0200 Subject: [PATCH] Fix DRLG_L3SpawnEdge spawntable --- Source/drlg_l3.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/drlg_l3.cpp b/Source/drlg_l3.cpp index 72c30ef85..42ca3edf1 100644 --- a/Source/drlg_l3.cpp +++ b/Source/drlg_l3.cpp @@ -1074,7 +1074,7 @@ static BOOL DRLG_L3Spawn(int x, int y, int *totarea); static BOOL DRLG_L3SpawnEdge(int x, int y, int *totarea) { BYTE i; - static BYTE spawntable[15] = { 0, 0x0A, 0x43, 0x05, 0x2C, 0x06, 0x09, 0, 0, 0x1C, 0x83, 0x06, 0x09, 0x0A, 0x05 }; + static BYTE spawntable[15] = { 0, 0x0A, 0x43, 0x05, 0x2C, 0x06, 0x09, 0, 0, 0x0C, 0x83, 0x06, 0x09, 0x0A, 0x05 }; if (*totarea > 40) { return TRUE;