mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-09-04 11:45:18 +02:00
Global: Fix some type conversion warnings.
Hidden by some warning disables.
This commit is contained in:
@@ -780,12 +780,12 @@ u32 DiskCachingFileLoaderCache::DetermineMaxBlocks() {
|
||||
}
|
||||
// This might be smaller than what's free, but if they try to launch a second game,
|
||||
// they'll be happier when it can be cached too.
|
||||
return freeBlocksWithFlex;
|
||||
return (u32)freeBlocksWithFlex;
|
||||
}
|
||||
|
||||
// Might be lower than LOWER_BOUND, but that's okay. That means not enough space.
|
||||
// We abandon the idea of flex since there's not enough space free anyway.
|
||||
return freeBlocks;
|
||||
return (u32)freeBlocks;
|
||||
}
|
||||
|
||||
u32 DiskCachingFileLoaderCache::CountCachedFiles() {
|
||||
|
||||
Reference in New Issue
Block a user