added event actions (active screen elements) for global animations
[rocksndiamonds.git] / src / events.c
index 000744c9e177a90e8dff21dcd2f7ffc78ae66ff1..b21f3706fef27c21a7d176820c7a117733aa0066 100644 (file)
@@ -1760,6 +1760,15 @@ static void HandleKeysSpecial(Key key)
       DumpBrush_Small();
     }
   }
+
+  /* special key shortcuts for all game modes */
+  if (is_string_suffix(cheat_input, ":dump-event-actions") ||
+      is_string_suffix(cheat_input, ":dea") ||
+      is_string_suffix(cheat_input, ":DEA"))
+  {
+    DumpGadgetIdentifiers();
+    DumpScreenIdentifiers();
+  }
 }
 
 void HandleKeysDebug(Key key)