core: Resolve C4267 warning on MSVC

This commit is contained in:
Morph
2022-05-18 00:05:41 -04:00
parent 4e73ff3978
commit 3a43475149
7 changed files with 15 additions and 12 deletions
+1 -1
View File
@@ -143,7 +143,7 @@ u32 GetSeedCount() {
if (!db.Load()) {
return 0;
}
return db.GetCount();
return static_cast<u32>(db.GetCount());
}
} // namespace FileSys