From 1e8e700ee645fa642e868c79c2717c82d3509f55 Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 18 Dec 2014 23:25:36 +1100 Subject: Change TileSpec::frames to be std::vector not std::map Signed-off-by: Craig Robbins --- src/tile.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/tile.h') diff --git a/src/tile.h b/src/tile.h index f4dc572e7..ea7a9135a 100644 --- a/src/tile.h +++ b/src/tile.h @@ -27,7 +27,7 @@ with this program; if not, write to the Free Software Foundation, Inc., #include #include "threads.h" #include -#include +#include class IGameDef; @@ -272,7 +272,7 @@ struct TileSpec // Animation parameters u8 animation_frame_count; u16 animation_frame_length_ms; - std::map frames; + std::vector frames; u8 rotation; }; -- cgit v1.2.3