Skip to content

Commit

Permalink
VMAP: Fix compilation and warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
killerwife committed Aug 17, 2024
1 parent aac413d commit 4de0f16
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/game/vmap/IVMapManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@

#include <string>
#include <Platform/Define.h>
#include <vector>

//===========================================================

Expand Down
2 changes: 1 addition & 1 deletion src/game/vmap/VMapManager2.h
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ namespace VMAP
VMapManager2();
~VMapManager2();

void InitializeThreadUnsafe(const std::vector<uint32>& mapIds);
void InitializeThreadUnsafe(const std::vector<uint32>& mapIds) override;

VMAPLoadResult loadMap(const char* pBasePath, unsigned int pMapId, int x, int y) override;
bool IsTileLoaded(uint32 mapId, uint32 x, uint32 y) const override;
Expand Down

0 comments on commit 4de0f16

Please sign in to comment.