From 9de6766750862a74f476b06154b20f733d43888e Mon Sep 17 00:00:00 2001 From: William JCM Date: Sat, 26 Nov 2022 11:31:14 +0100 Subject: [PATCH] SaveTool: add the libcurl version to the about screen. --- src/SaveTool/SaveTool_drawAbout.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/SaveTool/SaveTool_drawAbout.cpp b/src/SaveTool/SaveTool_drawAbout.cpp index b80af38..1904d1b 100644 --- a/src/SaveTool/SaveTool_drawAbout.cpp +++ b/src/SaveTool/SaveTool_drawAbout.cpp @@ -24,6 +24,8 @@ #include +#include + #include "../FontAwesome/IconsFontAwesome5.h" #include "../FontAwesome/IconsFontAwesome5Brands.h" @@ -255,6 +257,7 @@ void SaveTool::drawAbout() { } if(ImGui::TreeNodeEx("libcurl", ImGuiTreeNodeFlags_SpanAvailWidth)) { + ImGui::Text("Version used: %s", LIBCURL_VERSION); auto curl_website = "https://curl.se/libcurl"; drawAlignedText(ICON_FA_GLOBE " %s", curl_website); ImGui::SameLine();