From 47199e390f61ba83d2dc99a2d1a01e23c01f037e Mon Sep 17 00:00:00 2001 From: Nathan Fulton Date: Sat, 29 Apr 2017 22:47:06 -0400 Subject: [PATCH] FogMap walls.anir -> wall.anir The animation data for walls in the art2432 repo uses "wall" instead of "walls" --- game/fogmap.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game/fogmap.cpp b/game/fogmap.cpp index 96bac60..6233f21 100644 --- a/game/fogmap.cpp +++ b/game/fogmap.cpp @@ -103,7 +103,7 @@ bool FogMap::Init(Size *psizTile, Size *psizMap) // Load the wall bitmaps - m_panidWalls = LoadAnimationData("walls.anir"); + m_panidWalls = LoadAnimationData("wall.anir"); if (m_panidWalls == NULL) { Assert("Failed to load wall.anir"); return false;