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