mirror of
https://github.com/flightlessmango/MangoHud.git
synced 2024-11-11 19:10:55 +00:00
config: mutex: forgot brackets in render
This commit is contained in:
parent
33b8924384
commit
66b103ac55
@ -666,8 +666,10 @@ void horizontal_separator(struct overlay_params& params) {
|
||||
|
||||
void render_imgui(swapchain_stats& data, struct overlay_params& params, ImVec2& window_size, bool is_vulkan)
|
||||
{
|
||||
std::unique_lock<std::mutex> lock(config_mtx);
|
||||
config_cv.wait(lock, []{ return config_ready; });
|
||||
{
|
||||
std::unique_lock<std::mutex> lock(config_mtx);
|
||||
config_cv.wait(lock, []{ return config_ready; });
|
||||
}
|
||||
// data.engine = EngineTypes::GAMESCOPE;
|
||||
HUDElements.sw_stats = &data; HUDElements.params = ¶ms;
|
||||
HUDElements.is_vulkan = is_vulkan;
|
||||
|
Loading…
Reference in New Issue
Block a user