mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-25 23:29:44 -06:00
Use "unsigned int" instead of "unsigned".
By request of hrydgard.
See commit 045eb924d9
.
This commit is contained in:
@ -759,7 +759,7 @@ void UpdateParameters()
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
unsigned GetTicksPerLine()
|
unsigned int GetTicksPerLine()
|
||||||
{
|
{
|
||||||
if (s_lineCount == 0)
|
if (s_lineCount == 0)
|
||||||
{
|
{
|
||||||
@ -771,7 +771,7 @@ unsigned GetTicksPerLine()
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
unsigned GetTicksPerFrame()
|
unsigned int GetTicksPerFrame()
|
||||||
{
|
{
|
||||||
return TicksPerFrame;
|
return TicksPerFrame;
|
||||||
}
|
}
|
||||||
|
@ -357,8 +357,8 @@ union UVIDTVStatus
|
|||||||
// Change values pertaining to video mode
|
// Change values pertaining to video mode
|
||||||
void UpdateParameters();
|
void UpdateParameters();
|
||||||
|
|
||||||
unsigned GetTicksPerLine();
|
unsigned int GetTicksPerLine();
|
||||||
unsigned GetTicksPerFrame();
|
unsigned int GetTicksPerFrame();
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // _VIDEOINTERFACE_H
|
#endif // _VIDEOINTERFACE_H
|
||||||
|
Reference in New Issue
Block a user