diff --git a/Source/Core/Core/Src/HW/VideoInterface.cpp b/Source/Core/Core/Src/HW/VideoInterface.cpp index 93c48d92f9..8c8bc2e802 100644 --- a/Source/Core/Core/Src/HW/VideoInterface.cpp +++ b/Source/Core/Core/Src/HW/VideoInterface.cpp @@ -759,7 +759,7 @@ void UpdateParameters() } } -int GetTicksPerLine() +unsigned GetTicksPerLine() { if (s_lineCount == 0) { @@ -771,7 +771,7 @@ int GetTicksPerLine() } } -int GetTicksPerFrame() +unsigned GetTicksPerFrame() { return TicksPerFrame; } diff --git a/Source/Core/Core/Src/HW/VideoInterface.h b/Source/Core/Core/Src/HW/VideoInterface.h index 021e48efdf..72943ad855 100644 --- a/Source/Core/Core/Src/HW/VideoInterface.h +++ b/Source/Core/Core/Src/HW/VideoInterface.h @@ -357,8 +357,8 @@ union UVIDTVStatus // Change values pertaining to video mode void UpdateParameters(); - int GetTicksPerLine(); - int GetTicksPerFrame(); + unsigned GetTicksPerLine(); + unsigned GetTicksPerFrame(); }; #endif // _VIDEOINTERFACE_H