imgui: Don't use base85 because of MSVC.

MSVC can't handle strings larger than 65536.
This commit is contained in:
BearOso 2023-05-04 12:19:29 -05:00
parent 04a0fdc97e
commit 8289c775b8
2 changed files with 9311 additions and 3992 deletions

View File

@ -279,5 +279,5 @@ void S9xImGuiInit(S9xImGuiInitInfo *init_info)
builder.AddText("←↑→↓▶❚"); builder.AddText("←↑→↓▶❚");
ranges.clear(); ranges.clear();
builder.BuildRanges(&ranges); builder.BuildRanges(&ranges);
ImGui::GetIO().Fonts->AddFontFromMemoryCompressedBase85TTF(imgui_noto_font_compressed_data_base85, settings.font_size, nullptr, ranges.Data); ImGui::GetIO().Fonts->AddFontFromMemoryCompressedTTF(imgui_noto_font_compressed_data, settings.font_size, nullptr, ranges.Data);
} }

File diff suppressed because it is too large Load Diff