mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-05 07:39:17 +00:00
Merge pull request #3450 from Sonicadvance1/fix_warning
Fix warning in VideoInterface
This commit is contained in:
commit
f3098bf426
1 changed files with 1 additions and 1 deletions
|
@ -680,7 +680,7 @@ void Update()
|
||||||
|
|
||||||
for (UVIInterruptRegister& reg : m_InterruptRegister)
|
for (UVIInterruptRegister& reg : m_InterruptRegister)
|
||||||
{
|
{
|
||||||
if (s_half_line_count + 1 == 2 * reg.VCT)
|
if (s_half_line_count + 1 == 2u * reg.VCT)
|
||||||
{
|
{
|
||||||
reg.IR_INT = 1;
|
reg.IR_INT = 1;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue