Skip to content

Commit

Permalink
Fix missing array header, and types
Browse files Browse the repository at this point in the history
  • Loading branch information
TheCycoONE committed May 27, 2019
1 parent 1ee6c90 commit ca6548a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions CorsixTH/Src/th_map_overlays.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ SOFTWARE.
#include "th_gfx.h"
#include "th_map.h"
#include <sstream>
#include <array>

map_overlay_pair::map_overlay_pair()
{
Expand Down Expand Up @@ -166,8 +167,8 @@ namespace {
// not from the same parcel.
struct parcel_edge_sprite
{
ptrdiff_t dx;
ptrdiff_t dy;
int dx;
int dy;
size_t sprite;
};

Expand Down

0 comments on commit ca6548a

Please sign in to comment.