Use "unsigned int" instead of "unsigned".

By request of hrydgard.
See commit 045eb924d9.
This commit is contained in:
Maarten ter Huurne 2011-12-07 07:10:31 +01:00
parent 252093295b
commit c04c3bd9d3
2 changed files with 4 additions and 4 deletions

View File

@ -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;
}

View File

@ -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