* Toggle fast forward mode. * * @return #CBF_NONE */
| 222 | * @return #CBF_NONE |
| 223 | */ |
| 224 | static CallBackFunction ToolbarFastForwardClick(Window *) |
| 225 | { |
| 226 | if (_networking) return CBF_NONE; // no fast forward in network game |
| 227 | |
| 228 | ChangeGameSpeed(_game_speed == 100); |
| 229 | |
| 230 | SndClickBeep(); |
| 231 | return CBF_NONE; |
| 232 | } |
| 233 | |
| 234 | /** |
| 235 | * Game Option button menu entries. |
no test coverage detected