core: Resolve C4267 warning on MSVC

This commit is contained in:
Morph 2022-05-12 00:23:36 -04:00
parent 4e73ff3978
commit 3a43475149
7 changed files with 15 additions and 12 deletions

View file

@ -143,7 +143,7 @@ u32 GetSeedCount() {
if (!db.Load()) {
return 0;
}
return db.GetCount();
return static_cast<u32>(db.GetCount());
}
} // namespace FileSys