aboutsummaryrefslogtreecommitdiff
path: root/source/Player.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/Player.cpp')
-rw-r--r--source/Player.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/Player.cpp b/source/Player.cpp
index f97793e..b37a232 100644
--- a/source/Player.cpp
+++ b/source/Player.cpp
@@ -1,6 +1,7 @@
#include "Player.hpp"
#include "AppConfig.hpp"
+#include "CommonVertexIndex.hpp"
#include "ScopeGuard.hpp"
#include "Utils.hpp"
@@ -22,7 +23,7 @@ Player::Player(GameWorld* world, int id)
: GameObject(KD_Player, world)
, mId{ id } {
renderObject.SetMaterial(gDefaultMaterial.Get());
- renderObject.SetFormat(gVformatStandardPacked.Get(), Tags::IT_16Bit);
+ renderObject.SetFormat(gVformatStandard.Get(), Tags::IT_16Bit);
renderObject.RebuildIfNecessary();
}