From 644f62a52ec6efe2c63cd35aca785204d71557a6 Mon Sep 17 00:00:00 2001 From: Seth Long Date: Wed, 16 Oct 2024 23:07:27 -0700 Subject: [PATCH] Trivial comment update to test hook --- game.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game.h b/game.h index 720f25a..4d2d66c 100644 --- a/game.h +++ b/game.h @@ -26,7 +26,7 @@ struct vertex { bool operator==(const vertex& other) const { return pos == other.pos && tex_coord == other.tex_coord; } -}; // __attribute__((packed)); // TODO: Alignment +}; // __attribute__((packed)); // This doesn't seem to matter unsigned int load_texture(const char* filename); int load_model(std::vector &verticies, std::vector &indices, const char* filename, float scale = 1.0f, bool swap_yz = false, glm::vec2 texture_scale = glm::vec2(1, 1)); -- 2.39.5