summaryrefslogtreecommitdiffhomepage
path: root/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.c b/src/main.c
index 3a93df2..3f26d88 100644
--- a/src/main.c
+++ b/src/main.c
@@ -101,7 +101,6 @@ int main(void)
Texture2D texture = LoadTexture("rom:/cubicmap_atlas32x32.png"); // Load map texture
//Model model = LoadModel("rom:/plane.m3d");
- Vector3 position = { 0.0f, 0.0f, 0.0f }; // Set model position
//BoundingBox bounds = GetMeshBoundingBox(model.meshes[0]); // Set model bounds
@@ -117,7 +116,8 @@ int main(void)
//-----------------------------------------------------
//controller_read(&controllers);
- movePlayer(&(world.players[0]));
+ movePlayers();
+ //camera = lookThroughPlayer(camera, world.players[0], world.players[1]);
// Update
//----------------------------------------------------------------------------------