|
From: <sv...@op...> - 2026-05-20 16:31:55
|
Author: manx Date: Wed May 20 18:31:43 2026 New Revision: 25335 URL: https://source.openmpt.org/browse/openmpt/?op=revision&rev=25335 Log: [Ref] mpt/base/math.hpp: Add missing include for DJGPP. Modified: trunk/OpenMPT/src/mpt/base/math.hpp Modified: trunk/OpenMPT/src/mpt/base/math.hpp ============================================================================== --- trunk/OpenMPT/src/mpt/base/math.hpp Wed May 20 18:30:40 2026 (r25334) +++ trunk/OpenMPT/src/mpt/base/math.hpp Wed May 20 18:31:43 2026 (r25335) @@ -13,6 +13,10 @@ #include <cmath> +#if MPT_OS_DJGPP +#include <math.h> +#endif // MPT_OS_DJGPP + namespace mpt { |