--User changes

-New look for the About dialog, it was growing too large before. More work to be done on it in a follow up commit.

--Bug fixes
 -Fix build with new glm, no longer uses type_int.hpp.
This commit is contained in:
Person
2018-09-17 22:16:12 -07:00
parent 1bc9ded7ac
commit 0a3d41de36
3 changed files with 35 additions and 206 deletions

View File

@ -79,7 +79,9 @@
//glm is what's used for matrix math.
#include <glm/glm.hpp>
#include <glm/detail/type_int.hpp>
#if GLM_VERSION <= 990
#include <glm/detail/type_int.hpp>
#endif
#include <glm/gtc/matrix_transform.hpp>
#include <glm/gtc/type_ptr.hpp>
#include <glm/gtx/string_cast.hpp>