1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-15 11:03:00 +01:00

Make isatty warning suppression local to StdInOutConsole.cpp

This commit is contained in:
Aaron van Geffen
2024-07-09 17:08:42 +02:00
parent 3b42bbb2f3
commit 44e09149d9

View File

@@ -17,6 +17,11 @@
#include <linenoise.hpp>
// Ignore isatty warning on WIN32
#ifdef _MSC_VER
# pragma warning(disable : 4996)
#endif
using namespace OpenRCT2;
void StdInOutConsole::Start()