Compare commits
2 commits
07fca7b0d0
...
9de6766750
Author | SHA1 | Date | |
---|---|---|---|
9de6766750 | |||
90ff680aff |
2 changed files with 4 additions and 1 deletions
|
@ -24,6 +24,8 @@
|
|||
|
||||
#include <zipconf.h>
|
||||
|
||||
#include <curl/curlver.h>
|
||||
|
||||
#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();
|
||||
|
|
|
@ -40,7 +40,7 @@ int main(int argc, char** argv) {
|
|||
|
||||
LOG_INFO("Initialising M.A.S.S. Builder Save Tool version " SAVETOOL_VERSION ".");
|
||||
|
||||
auto str = std::setlocale(LC_ALL, ".utf-8");
|
||||
auto str = setlocale(LC_ALL, ".utf-8");
|
||||
if(str) {
|
||||
Containers::StringView locale{str};
|
||||
LOG_INFO_FORMAT("Current locale: {}", locale);
|
||||
|
|
Loading…
Reference in a new issue