Codechange: Move command arguments to the back of the networked command function calls.

This commit is contained in:
Michael Lutz
2021-10-03 17:15:48 +02:00
parent b6933a2ebd
commit 549caca39c
48 changed files with 265 additions and 236 deletions

View File

@@ -125,7 +125,7 @@ struct EnginePreviewWindow : Window {
{
switch (widget) {
case WID_EP_YES:
DoCommandP(0, this->window_number, 0, CMD_WANT_ENGINE_PREVIEW);
DoCommandP(CMD_WANT_ENGINE_PREVIEW, 0, this->window_number, 0);
FALLTHROUGH;
case WID_EP_NO:
if (!_shift_pressed) this->Close();