Typo fix, MOBILE_DEVICE

This commit is contained in:
Henrik Rydgård 2017-05-25 00:31:00 +02:00
parent 6bccc06628
commit 9ce874d2cf
2 changed files with 2 additions and 2 deletions

View file

@ -294,7 +294,7 @@ void ElfReader::LoadRelocations2(int rel_seg)
rel_offset = rel_base+segmentVAddr[off_seg];
if (!Memory::IsValidAddress(relocate_to)) {
if (!Memory::IsValidAddress(rel_offset)) {
ERROR_LOG(LOADER, "ELF: Bad rel_offset: %08x", rel_offset);
continue;
}

View file

@ -219,7 +219,7 @@ void GameSettingsScreen::CreateViews() {
blockTransfer->SetDisabledPtr(&g_Config.bSoftwareRendering);
bool showSoftGPU = true;
#if PPSSPP_PLATFORM(ANDROID)
#ifdef MOBILE_DEVICE
// On Android, only show the software rendering setting if it's already enabled.
// Can still be turned on through INI file editing.
showSoftGPU = g_Config.bSoftwareRendering;