Skip to content

Commit

Permalink
Comment out GLM static assertion which isn't true on Dreamcast (g-tru…
Browse files Browse the repository at this point in the history
  • Loading branch information
Kazade committed May 3, 2017
1 parent 8e55686 commit 4914ffc
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
4 changes: 3 additions & 1 deletion deps/glm/detail/type_float.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,9 @@ namespace detail
// check type sizes
#ifndef GLM_STATIC_ASSERT_NULL
GLM_STATIC_ASSERT(sizeof(glm::float32) == 4, "float32 size isn't 4 bytes on this platform");
GLM_STATIC_ASSERT(sizeof(glm::float64) == 8, "float64 size isn't 8 bytes on this platform");

// ** THIS IS COMMENTED OUT BECAUSE THE DREAMCAST DOESNT HAVE 8 BYTE FLOATS **
// GLM_STATIC_ASSERT(sizeof(glm::float64) == 8, "float64 size isn't 8 bytes on this platform");
#endif//GLM_STATIC_ASSERT_NULL

/// @}
Expand Down
4 changes: 4 additions & 0 deletions simulant/kos_keycodes.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#ifndef KOS_KEYCODES_H
#define KOS_KEYCODES_H

#endif // KOS_KEYCODES_H

0 comments on commit 4914ffc

Please sign in to comment.