fix skwbd numpa not showing
This commit is contained in:
@@ -42,14 +42,15 @@ Result ShowInternal(Config& cfg, const char* guide, const char* initial, s64 len
|
|||||||
} // namespace
|
} // namespace
|
||||||
|
|
||||||
Result ShowText(std::string& out, const char* guide, const char* initial, s64 len_min, s64 len_max) {
|
Result ShowText(std::string& out, const char* guide, const char* initial, s64 len_min, s64 len_max) {
|
||||||
Config cfg;
|
Config cfg{};
|
||||||
R_TRY(ShowInternal(cfg, guide, initial, len_min, len_max));
|
R_TRY(ShowInternal(cfg, guide, initial, len_min, len_max));
|
||||||
out = cfg.out_text;
|
out = cfg.out_text;
|
||||||
R_SUCCEED();
|
R_SUCCEED();
|
||||||
}
|
}
|
||||||
|
|
||||||
Result ShowNumPad(s64& out, const char* guide, const char* initial, s64 len_min, s64 len_max) {
|
Result ShowNumPad(s64& out, const char* guide, const char* initial, s64 len_min, s64 len_max) {
|
||||||
Config cfg;
|
Config cfg{};
|
||||||
|
cfg.numpad = true;
|
||||||
R_TRY(ShowInternal(cfg, guide, initial, len_min, len_max));
|
R_TRY(ShowInternal(cfg, guide, initial, len_min, len_max));
|
||||||
out = std::atoll(cfg.out_text);
|
out = std::atoll(cfg.out_text);
|
||||||
R_SUCCEED();
|
R_SUCCEED();
|
||||||
|
|||||||
Reference in New Issue
Block a user