mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-17 06:18:30 -05:00
Merge pull request #892 from zawata/another-warning-fixes
Yet More Warning Fixes
This commit is contained in:
@ -502,7 +502,7 @@ void Advance() {
|
||||
Core::g_app_core->down_count += diff;
|
||||
}
|
||||
if (advance_callback)
|
||||
advance_callback(cycles_executed);
|
||||
advance_callback(static_cast<int>(cycles_executed));
|
||||
}
|
||||
|
||||
void LogPendingEvents() {
|
||||
|
@ -191,7 +191,7 @@ static THREEDSX_Error Load3DSXFile(FileUtil::IOFile& file, u32 base_addr, Shared
|
||||
*pos = (addr);
|
||||
break;
|
||||
case 1:
|
||||
*pos = (addr - in_addr);
|
||||
*pos = static_cast<u32>(addr - in_addr);
|
||||
break;
|
||||
default:
|
||||
break; //this should never happen
|
||||
|
Reference in New Issue
Block a user