Fix double definition

pull/109/head
jackun 4 years ago
parent a84f5ef178
commit 2ab386d70a
No known key found for this signature in database
GPG Key ID: 119DB3F1D05A9ED3

@ -210,7 +210,7 @@ util_files = files(
'src/mesa/util/os_socket.c',
'src/mesa/util/os_time.c',
)
pre_args += '-DMANGOHUD_ARCH='
if target_machine.cpu_family() == 'x86_64'
pre_args += '-DMANGOHUD_ARCH="64bit"'
endif

@ -1243,7 +1243,7 @@ void render_imgui(swapchain_stats& data, struct overlay_params& params, ImVec2&
}
if (params.enabled[OVERLAY_PARAM_ENABLED_arch]){
ImGui::Dummy(ImVec2(0.0,5.0f));
ImGui::TextColored(engine_color, "%s", MANGOHUD_ARCH);
ImGui::TextColored(engine_color, "%s", "" MANGOHUD_ARCH);
}
ImGui::PopFont();
}

Loading…
Cancel
Save