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