(int key)
| 4147 | * ================= Keydown ================= |
| 4148 | */ |
| 4149 | static void Keydown(int key) { |
| 4150 | String s; |
| 4151 | |
| 4152 | if (m_keyfunc != null) |
| 4153 | if ((s = m_keyfunc.execute(key)) != null) |
| 4154 | S.StartLocalSound(s); |
| 4155 | } |
| 4156 | |
| 4157 | private static void Action_DoEnter(menuaction_s a) { |
| 4158 | if (a.callback != null) |
no test coverage detected