Fix warnings in core and common

This commit is contained in:
Lioncash 2014-09-28 11:30:29 -04:00
parent ee7cfc71bd
commit ca2f0de08a
5 changed files with 7 additions and 17 deletions

View file

@ -53,7 +53,7 @@ size_t File_SDMC::Write(const u64 offset, const u32 length, const u32 flush, con
}
size_t File_SDMC::GetSize() const {
return file->GetSize();
return static_cast<size_t>(file->GetSize());
}
bool File_SDMC::Close() const {