1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-25 07:44:38 +01:00

Add missing header include for std::ceil call (#6655)

OpenGLDrawingEngine::ConfigureCanvas calls std::ceil which is defined by
the cmath include. Adding the include directive resolves a compilation
failure to due std::ceil being otherwise undefined.
This commit is contained in:
kitsunenokenja
2017-11-12 09:02:30 -05:00
committed by Ted John
parent bd0bd9e038
commit 04f0048430

View File

@@ -16,6 +16,7 @@
#ifndef DISABLE_OPENGL
#include <cmath>
#include <unordered_map>
#include <SDL.h>