fix memory map conversion (#13386)

This commit is contained in:
Jamiras 2021-12-21 13:15:03 -07:00 committed by GitHub
parent 07534e4a6d
commit 7ad71a4a05
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2775,9 +2775,6 @@ bool runloop_environment_cb(unsigned cmd, void *data)
if (!descriptors)
return false;
if (log_level != RETRO_LOG_DEBUG)
break;
system->mmaps.descriptors = descriptors;
system->mmaps.num_descriptors = mmaps->num_descriptors;
@ -2786,6 +2783,9 @@ bool runloop_environment_cb(unsigned cmd, void *data)
mmap_preprocess_descriptors(descriptors, mmaps->num_descriptors);
if (log_level != RETRO_LOG_DEBUG)
break;
if (sizeof(void *) == 8)
RARCH_LOG(" ndx flags ptr offset start select disconn len addrspace\n");
else