video_core: Silence implicit conversion warnings

This commit is contained in:
ReinUsesLisp
2019-11-08 17:08:07 -03:00
parent fa0d65fc7b
commit 096f339a2a
9 changed files with 62 additions and 53 deletions

View File

@ -261,7 +261,8 @@ void Maxwell3D::CallMacroMethod(u32 method, std::size_t num_parameters, const u3
executing_macro = 0;
// Lookup the macro offset
const u32 entry = ((method - MacroRegistersStart) >> 1) % macro_positions.size();
const u32 entry =
((method - MacroRegistersStart) >> 1) % static_cast<u32>(macro_positions.size());
// Execute the current macro.
macro_interpreter.Execute(macro_positions[entry], num_parameters, parameters);