Commit 614938b1 authored by Rémi Duraffort's avatar Rémi Duraffort

mkv: fix warning (size_t is unsigned).

parent 40b504b4
...@@ -122,7 +122,7 @@ public: ...@@ -122,7 +122,7 @@ public:
uint16 GetGPRM( size_t index ) const uint16 GetGPRM( size_t index ) const
{ {
if ( index >= 0 && index < 16 ) if ( index < 16 )
return p_PRMs[ index ]; return p_PRMs[ index ];
else return 0; else return 0;
} }
...@@ -137,7 +137,7 @@ public: ...@@ -137,7 +137,7 @@ public:
bool SetPRM( size_t index, uint16 value ) bool SetPRM( size_t index, uint16 value )
{ {
if ( index >= 0 && index < 16 ) if ( index < 16 )
{ {
p_PRMs[ index ] = value; p_PRMs[ index ] = value;
return true; return true;
...@@ -147,7 +147,7 @@ public: ...@@ -147,7 +147,7 @@ public:
bool SetGPRM( size_t index, uint16 value ) bool SetGPRM( size_t index, uint16 value )
{ {
if ( index >= 0 && index < 16 ) if ( index < 16 )
{ {
p_PRMs[ index ] = value; p_PRMs[ index ] = value;
return true; return true;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment