diff options
author | drumsetmonkey <abelleisle@roadrunner.com> | 2016-04-28 11:49:19 -0400 |
---|---|---|
committer | drumsetmonkey <abelleisle@roadrunner.com> | 2016-04-28 11:49:19 -0400 |
commit | 992969772def3578acbd1cef0155333636f75862 (patch) | |
tree | 2794c7591bb463d5fe28a669eb97d211d72f4501 /include/common.hpp | |
parent | 4f0dff18e4680d9bb4e7efc9cffdb0b63937533c (diff) | |
parent | 62df9319f06bb52da8878522117ebe85fc5226b5 (diff) |
Merge branch 'master' of https://github.com/tcsullivan/gamedev
Diffstat (limited to 'include/common.hpp')
-rw-r--r-- | include/common.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/common.hpp b/include/common.hpp index 1f7b9fc..c30f861 100644 --- a/include/common.hpp +++ b/include/common.hpp @@ -165,7 +165,7 @@ extern std::mutex mtx; * */ -#define HLINES(n) (game::HLINE * n) +#define HLINES(n) (static_cast<int>(game::HLINE * n)) /** * A 'wrapper' for libc's srand(), as we hope to eventually have our own random number |