Make all service memory structures OFW comaptible

This commit is contained in:
Willy-JL
2023-08-29 01:57:06 +02:00
parent d87d982b2b
commit d7aa3ea60f
15 changed files with 63 additions and 30 deletions

View File

@@ -55,10 +55,10 @@ struct Desktop {
ViewStack* locked_view_stack;
DesktopSettings settings;
Keybind keybinds[KeybindTypeCount][KeybindKeyCount];
DesktopViewPinInput* pin_input_view;
ViewPort* lock_icon_viewport;
ViewPort* _dummy_mode_icon_viewport; // Unused, kept for compatibility
ViewPort* clock_viewport;
ViewPort* stealth_mode_icon_viewport;
@@ -80,6 +80,8 @@ struct Desktop {
bool time_format_12 : 1; // 1 - 12 hour, 0 - 24H
bool in_transition : 1;
Keybind keybinds[KeybindTypeCount][KeybindKeyCount];
};
Desktop* desktop_alloc();