fix warning

This commit is contained in:
radius 2018-01-26 22:27:58 -05:00
parent d047897462
commit e97624ba7d
1 changed files with 3 additions and 2 deletions

View File

@ -480,8 +480,10 @@ void *retro_get_memory_data(unsigned type)
else
data = NULL;
break;
default:
data = NULL;
break;
}
return data;
}
@ -512,7 +514,6 @@ size_t retro_get_memory_size(unsigned type)
size = 0;
break;
}
return size;
}