diff options
author | Loïc Guilloux <glx22@users.noreply.github.com> | 2021-04-29 14:26:08 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-29 14:26:08 +0200 |
commit | 356bbbb90aaa3ac981b69693ce40d3afdaa6ea33 (patch) | |
tree | f6488574bd8f270062d14953ac1ca1950c0f3826 /src/network | |
parent | 20ac0b41484ebcaef3f8bdc9d4410903fd499386 (diff) | |
download | openttd-356bbbb90aaa3ac981b69693ce40d3afdaa6ea33.tar.xz |
Fix: [MinGW] Set minimum OS version to Windows XP (#9135)
Diffstat (limited to 'src/network')
-rw-r--r-- | src/network/network_chat_gui.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/network/network_chat_gui.cpp b/src/network/network_chat_gui.cpp index 862a0a4cb..14edc1503 100644 --- a/src/network/network_chat_gui.cpp +++ b/src/network/network_chat_gui.cpp @@ -7,9 +7,6 @@ /** @file network_chat_gui.cpp GUI for handling chat messages. */ -#include <stdarg.h> /* va_list */ -#include <deque> - #include "../stdafx.h" #include "../strings_func.h" #include "../blitter/factory.hpp" @@ -28,6 +25,9 @@ #include "table/strings.h" +#include <stdarg.h> /* va_list */ +#include <deque> + #include "../safeguards.h" /** The draw buffer must be able to contain the chat message, client name and the "[All]" message, |