mirror of
https://github.com/eried/portapack-mayhem.git
synced 2025-06-22 13:54:22 -04:00
Added RFM69 helper
LGE tool: new frames Text entry string length bugfix
This commit is contained in:
parent
dd35bda197
commit
b1e72c788b
18 changed files with 417 additions and 130 deletions
|
@ -66,10 +66,10 @@ RDSPSNView::RDSPSNView(
|
|||
button_set.on_select = [this, &nav](Button&) {
|
||||
text_prompt(
|
||||
nav,
|
||||
&PSN,
|
||||
PSN,
|
||||
8,
|
||||
[this](std::string* s) {
|
||||
text_psn.set(*s);
|
||||
[this](std::string& s) {
|
||||
text_psn.set(s);
|
||||
}
|
||||
);
|
||||
};
|
||||
|
@ -91,10 +91,10 @@ RDSRadioTextView::RDSRadioTextView(
|
|||
button_set.on_select = [this, &nav](Button&){
|
||||
text_prompt(
|
||||
nav,
|
||||
&radiotext,
|
||||
radiotext,
|
||||
28,
|
||||
[this](std::string* s) {
|
||||
text_radiotext.set(*s);
|
||||
[this](std::string& s) {
|
||||
text_radiotext.set(s);
|
||||
}
|
||||
);
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue