libretro: getRAM conditional compile

temporary workaround
This commit is contained in:
trinemark 2019-04-28 14:06:31 -05:00 committed by Stephen Anthony
parent 2284dc7f55
commit 3f9ca310c3
1 changed files with 2 additions and 0 deletions

View File

@ -123,12 +123,14 @@ class M6532 : public Device
*/ */
void updateEmulation(); void updateEmulation();
#ifdef __LIB_RETRO__
/** /**
Get a pointer to the RAM contents. Get a pointer to the RAM contents.
@return Pointer to RAM array. @return Pointer to RAM array.
*/ */
uInt8* getRAM() { return myRAM; } uInt8* getRAM() { return myRAM; }
#endif
private: private: