From f127621e13050aad6b455ebfadec5bfdcbdd00d4 Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Sun, 31 Jul 2016 16:47:26 +0200 Subject: made constexprs lower case and used constexpr for returning input value as well for rest of defines in osdcomm.h (nw) --- src/mame/drivers/apexc.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/mame/drivers/apexc.cpp') diff --git a/src/mame/drivers/apexc.cpp b/src/mame/drivers/apexc.cpp index acbdb0b39c0..2dac4620982 100644 --- a/src/mame/drivers/apexc.cpp +++ b/src/mame/drivers/apexc.cpp @@ -118,7 +118,7 @@ bool apexc_cylinder_image_device::call_load() UINT32 *RAM = (UINT32 *)(machine().root_device().memregion("maincpu")->base()); for (int i=0; i < 0x0400; i++) - RAM[i] = BIG_ENDIANIZE_INT32(RAM[i]); + RAM[i] = big_endianize_int32(RAM[i]); } #endif @@ -139,7 +139,7 @@ void apexc_cylinder_image_device::call_unload() UINT32 *RAM = (UINT32 *)(machine().root_device().memregion("maincpu")->base()); for (int i=0; i < /*0x2000*/0x0400; i++) - RAM[i] = BIG_ENDIANIZE_INT32(RAM[i]); + RAM[i] = big_endianize_int32(RAM[i]); } #endif /* write */ -- cgit v1.2.3