diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2016-11-25 14:12:05 -0500 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2016-11-25 14:12:05 -0500 |
commit | 34d992d75ea2b7f7c663dab6731ae819c4c54001 (patch) | |
tree | f29ae8162c01ec5cf3629cfd64a6502102acacd3 /src/ui.cpp | |
parent | f15968207ae17734f8caf623e9be7cc51994aee8 (diff) |
modified glm; added pedantic flag
Diffstat (limited to 'src/ui.cpp')
-rw-r--r-- | src/ui.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -571,7 +571,8 @@ namespace ui { */ void waitForDialog(void) { - while (dialogBoxExists); + while (dialogBoxExists) + std::this_thread::sleep_for(std::chrono::milliseconds(1)); } void waitForCover(void) { |