This commit is contained in:
Branimir Karadžić
2017-02-16 20:41:22 -08:00
parent 6cd89105cb
commit 55e3b56314
3 changed files with 4 additions and 2 deletions

View File

@@ -622,7 +622,7 @@ namespace entry
GamepadGLFW m_gamepad[ENTRY_CONFIG_MAX_GAMEPADS];
bx::SpScUnboundedQueueLf<Msg> m_msgs;
bx::SpScUnboundedQueueT<Msg> m_msgs;
double m_scrollPos;
};

View File

@@ -297,7 +297,7 @@ namespace entry
}
private:
bx::SpScUnboundedQueue<Event> m_queue;
bx::SpScUnboundedQueueT<Event> m_queue;
};
} // namespace entry

View File

@@ -20,6 +20,8 @@
#include <bx/thread.h>
#include <bx/os.h>
#include <bx/handlealloc.h>
#include <bx/mutex.h>
#include <string>
#include <fcntl.h>