diff options
author | LaG1924 <12997935+LaG1924@users.noreply.github.com> | 2018-01-12 13:55:43 +0100 |
---|---|---|
committer | LaG1924 <12997935+LaG1924@users.noreply.github.com> | 2018-01-13 03:39:34 +0100 |
commit | 73899fc81e26797b5e60de8de3fac676373275d8 (patch) | |
tree | 9512aa77ee4042be643cc66cb2386bea952fe409 /src | |
parent | Added togglable VSync option (diff) | |
download | AltCraft-73899fc81e26797b5e60de8de3fac676373275d8.tar AltCraft-73899fc81e26797b5e60de8de3fac676373275d8.tar.gz AltCraft-73899fc81e26797b5e60de8de3fac676373275d8.tar.bz2 AltCraft-73899fc81e26797b5e60de8de3fac676373275d8.tar.lz AltCraft-73899fc81e26797b5e60de8de3fac676373275d8.tar.xz AltCraft-73899fc81e26797b5e60de8de3fac676373275d8.tar.zst AltCraft-73899fc81e26797b5e60de8de3fac676373275d8.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/DebugInfo.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/DebugInfo.cpp b/src/DebugInfo.cpp index 309c7aa..e2d439b 100644 --- a/src/DebugInfo.cpp +++ b/src/DebugInfo.cpp @@ -1,6 +1,6 @@ #include "DebugInfo.hpp" -std::atomic_int DebugInfo::totalSections = 0; -std::atomic_int DebugInfo::renderSections = 0; -std::atomic_int DebugInfo::readyRenderer = 0; -std::atomic_int DebugInfo::gameThreadTime = 0;
\ No newline at end of file +std::atomic_int DebugInfo::totalSections(0); +std::atomic_int DebugInfo::renderSections(0); +std::atomic_int DebugInfo::readyRenderer(0); +std::atomic_int DebugInfo::gameThreadTime(0);
\ No newline at end of file |