mirror of
https://github.com/eried/portapack-mayhem.git
synced 2025-12-04 18:36:12 -05:00
fixed warning (#2297)
This commit is contained in:
parent
fcc52e83de
commit
023cee2c3c
3 changed files with 6 additions and 5 deletions
|
|
@ -54,9 +54,9 @@ class StandaloneView : public View {
|
|||
private:
|
||||
bool initialized = false;
|
||||
NavigationView& nav_;
|
||||
uint8_t* _app_image;
|
||||
uint8_t& _app_image;
|
||||
standalone_application_information_t* get_application_information() const {
|
||||
return reinterpret_cast<standalone_application_information_t*>(_app_image);
|
||||
return reinterpret_cast<standalone_application_information_t*>(&_app_image);
|
||||
}
|
||||
|
||||
MessageHandlerRegistration message_handler_sample{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue