mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-07-25 08:14:45 +02:00
Enable FlushInstructionCache on UWP, it's been allowed finally.
Minor warning fixes, UWP buildfix Retarget UWP project to latest SDK.
This commit is contained in:
@@ -50,7 +50,7 @@ void BlobFileSystem::CloseFile(u32 handle) {
|
||||
size_t BlobFileSystem::ReadFile(u32 handle, u8 *pointer, s64 size) {
|
||||
auto entry = entries_.find(handle);
|
||||
if (entry != entries_.end()) {
|
||||
s64 readSize = fileLoader_->ReadAt(entry->second, size, pointer);
|
||||
s64 readSize = (s64)fileLoader_->ReadAt(entry->second, (size_t)size, pointer);
|
||||
entry->second += readSize;
|
||||
return (size_t)readSize;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user