Fix atomic initialization
This commit is contained in:
parent
7afdb4d53e
commit
be0372ed94
1 changed files with 1 additions and 1 deletions
|
@ -26,7 +26,7 @@
|
||||||
int frametime = 1000 / FPS;
|
int frametime = 1000 / FPS;
|
||||||
|
|
||||||
std::unordered_map<lua_State*, InterpreterConfig*> statemap;
|
std::unordered_map<lua_State*, InterpreterConfig*> statemap;
|
||||||
std::atomic<std::uint64_t> framecounter = 0;
|
std::atomic<std::uint64_t> framecounter = {0};
|
||||||
|
|
||||||
ws2811_t ledstring =
|
ws2811_t ledstring =
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue