1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-29 01:35:06 +01:00

Remove Math::Clamp in favour of std::clamp

This commit is contained in:
Linus Unnebäck
2018-08-12 12:50:40 +01:00
parent 54fe6a7590
commit fd07be587a
101 changed files with 248 additions and 249 deletions

View File

@@ -19,7 +19,6 @@
#include "audio/audio.h"
#include "config/Config.h"
#include "core/FileScanner.h"
#include "core/Math.hpp"
#include "core/Util.hpp"
#include "interface/Screenshot.h"
#include "interface/Viewport.h"
@@ -61,6 +60,7 @@
#include "world/Surface.h"
#include "world/Water.h"
#include <algorithm>
#include <memory>
#define NUMBER_OF_AUTOSAVES_TO_KEEP 9