summaryrefslogtreecommitdiff
path: root/apps/misc.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/misc.c')
-rw-r--r--apps/misc.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/apps/misc.c b/apps/misc.c
index b027215ccc..5a99db2d8b 100644
--- a/apps/misc.c
+++ b/apps/misc.c
@@ -1021,3 +1021,20 @@ int clamp_value_wrap(int value, int max, int min)
1021} 1021}
1022#endif 1022#endif
1023#endif 1023#endif
1024#define MAX_ACTIVITY_DEPTH 12
1025static enum current_activity
1026 current_activity[MAX_ACTIVITY_DEPTH] = {ACTIVITY_UNKNOWN};
1027static int current_activity_top = 0;
1028void push_current_activity(enum current_activity screen)
1029{
1030 current_activity[current_activity_top++] = screen;
1031}
1032void pop_current_activity(void)
1033{
1034 current_activity_top--;
1035}
1036enum current_activity get_current_activity(void)
1037{
1038 return current_activity[current_activity_top?current_activity_top-1:0];
1039}
1040