libretro / quasi88-libretro

A port of QUASI88, a PC-8800 series emulator by Showzoh Fukunaga, to the libretro API
BSD 3-Clause "New" or "Revised" License
7 stars 24 forks source link

Fix android armv7 compile errors due to inline changes #36

Closed webgeek1234 closed 4 years ago

webgeek1234 commented 4 years ago

After the changes in May regarding the INLINE define, Android armeabi-v7a began failing on my ci system. See: https://gitlab.incom.co/libretro/quasi88-libretro/-/jobs/38048

I'm not familiar at all with this code base. But I did some reading of the commit log and saw that INLINE was previously set to 'static', so I changed the Android makefile to set INLINE to 'static inline' and at least everything compiles now. Someone that knows the code flow better may want to verify this is the desired code generation policy.