From 0e756e5191b0658aaecd5c58e2addb4853461392 Mon Sep 17 00:00:00 2001 From: hap Date: Tue, 22 Oct 2024 12:41:00 +0200 Subject: 86f_dsk: different workaround for (unused) BIG_ENDIAN enum --- src/lib/formats/86f_dsk.h | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/lib/formats/86f_dsk.h b/src/lib/formats/86f_dsk.h index 370a4cf4565..3ede1d03722 100644 --- a/src/lib/formats/86f_dsk.h +++ b/src/lib/formats/86f_dsk.h @@ -14,9 +14,6 @@ #include "flopimg.h" -// workaround for conflict with glibc/bits/endian.h -#undef BIG_ENDIAN - class _86f_format : public floppy_image_format_t { public: @@ -54,7 +51,7 @@ private: ZONE_PREA2_2 = 0x200, ZONE_A2 = 0x400, ZONE_C64 = 0x600, - BIG_ENDIAN = 0x800, + ENDIAN_BIG = 0x800, RPM_FAST = 0x1000, TOTAL_BC = 0x1000 }; -- cgit v1.2.3