mirror of https://github.com/stella-emu/stella.git
libretro: getRAM conditional compile
temporary workaround
This commit is contained in:
parent
2284dc7f55
commit
3f9ca310c3
|
@ -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:
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue