Skip to content

Commit

Permalink
[memory] reduce the main_step_t size in globals_t
Browse files Browse the repository at this point in the history
  • Loading branch information
spalmer25 committed Sep 12, 2024
1 parent 7acce77 commit 9740ebd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/src/globals.h
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ typedef enum {
*/
typedef struct {
/* State */
main_step_t step; /// Current operational state of app.
tz_ui_stream_t stream; /// UX and display related information
main_step_t step : 3; /// Current operational state of app.
tz_ui_stream_t stream; /// UX and display related information
bip32_path_with_curve_t path_with_curve; /// Derivation path
union {
struct {
Expand Down

0 comments on commit 9740ebd

Please sign in to comment.