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