mirror of
https://github.com/libretro/snes9x.git
synced 2024-11-30 03:50:25 +00:00
imgui: Don't use base85 because of MSVC.
MSVC can't handle strings larger than 65536.
This commit is contained in:
parent
04a0fdc97e
commit
8289c775b8
2
external/imgui/snes9x_imgui.cpp
vendored
2
external/imgui/snes9x_imgui.cpp
vendored
@ -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);
|
||||||
}
|
}
|
||||||
|
13301
external/imgui/snes9x_imgui_noto.h
vendored
13301
external/imgui/snes9x_imgui_noto.h
vendored
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user