glfw_init_count: improved documentation

This commit is contained in:
Martin Pulec
2022-06-29 08:56:49 +02:00
parent 5de26fd6d3
commit 0e900170b5

View File

@@ -111,7 +111,7 @@ volatile bool should_exit = false;
volatile int audio_offset; ///< added audio delay in ms (non-negative), can be used to tune AV sync
volatile int video_offset; ///< added video delay in ms (non-negative), can be used to tune AV sync
/// 0->1 - call glfwInit, 1->0 call glfwTerminate; fncs shouls be called from main thr, no need to synchronize
/// 0->1 - call glfwInit, 1->0 call glfwTerminate; glfw{Init,Terminate} should be called from main thr, thus no need to synchronize
int glfw_init_count;
std::unordered_map<std::string, std::string> commandline_params;