Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,320 changes: 1,320 additions & 0 deletions app/src/main/cpp/LinkuraLocalify/UnityAssetHelper.hpp

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions app/src/main/cpp/LinkuraLocalify/config/Config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ namespace LinkuraLocal::Config {
bool renderHighResolution = true;
bool fesArchiveUnlockTicket = false;
bool lazyInit = true;
bool loginAsIOS = false;
bool replaceFont = true;
bool textTest = false;
bool dumpText = false;
Expand Down Expand Up @@ -86,6 +87,7 @@ namespace LinkuraLocal::Config {
GetConfigItem(renderHighResolution);
GetConfigItem(fesArchiveUnlockTicket);
GetConfigItem(lazyInit);
GetConfigItem(loginAsIOS);
GetConfigItem(replaceFont);
GetConfigItem(textTest);
GetConfigItem(dumpText);
Expand Down Expand Up @@ -176,6 +178,7 @@ namespace LinkuraLocal::Config {
if (configUpdate.has_render_high_resolution()) renderHighResolution = configUpdate.render_high_resolution();
if (configUpdate.has_fes_archive_unlock_ticket()) fesArchiveUnlockTicket = configUpdate.fes_archive_unlock_ticket();
if (configUpdate.has_lazy_init()) lazyInit = configUpdate.lazy_init();
if (configUpdate.has_login_as_ios()) loginAsIOS = configUpdate.login_as_ios();
if (configUpdate.has_replace_font()) replaceFont = configUpdate.replace_font();
if (configUpdate.has_text_test()) textTest = configUpdate.text_test();
if (configUpdate.has_dump_text()) dumpText = configUpdate.dump_text();
Expand Down
1 change: 1 addition & 0 deletions app/src/main/cpp/LinkuraLocalify/config/Config.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ namespace LinkuraLocal::Config {
extern bool renderHighResolution;
extern bool fesArchiveUnlockTicket;
extern bool lazyInit;
extern bool loginAsIOS;
extern bool replaceFont;
extern bool textTest;
extern bool dumpText;
Expand Down
Loading
Loading