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:
Henrik Rydgård
2018-03-20 20:30:33 +01:00
parent 78488a4ea6
commit f76e5e70a7
17 changed files with 44 additions and 49 deletions
+1 -1
View File
@@ -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;
}