diff --git a/libretro/MultiSegApp.c b/libretro/MultiSegApp.c index 020efbfae1..01acdbf6d1 100644 --- a/libretro/MultiSegApp.c +++ b/libretro/MultiSegApp.c @@ -260,7 +260,7 @@ void Retro68InitMultisegApp() InstallPatches(); // Load and relocate statically initialized DATA - Handle DATA = Get1Resource('DATA', 0); + Handle DATA = GetResource('DATA', 0); BlockMoveData(*DATA, &_sdata, &_edata - &_sdata); ReleaseResource(DATA); diff --git a/libretro/relocate.c b/libretro/relocate.c index 49cd9d5377..d38407aefe 100644 --- a/libretro/relocate.c +++ b/libretro/relocate.c @@ -294,7 +294,7 @@ void Retro68Relocate() uint32_t relocatableSize; if(&_MULTISEG_APP == (uint8_t*)1) { - RELA = Get1Resource('RELA', 1); + RELA = GetResource('RELA', 1); assert(RELA); reloc = *RELA; uint32_t text_size = orig_etext - orig_stext;