This commit is contained in:
Sascha Willems 2020-08-21 17:29:43 +02:00
commit 7ef936b044
2 changed files with 2 additions and 2 deletions

View file

@ -96,7 +96,7 @@
#define KEY_KPADD KEY_KPPLUS
#define KEY_KPSUB KEY_KPMINUS
#elif defined(__linux__)
#elif defined(__linux__) || defined(__FreeBSD__)
#define KEY_ESCAPE 0x9
#define KEY_F1 0x43
#define KEY_F2 0x44

View file

@ -1164,7 +1164,7 @@ int main(const int argc, const char *argv[])
delete(vulkanExample);
return 0;
}
#elif defined(__linux__)
#elif defined(__linux__) || defined(__FreeBSD__)
// Linux entry point
VulkanExample *vulkanExample;