clean up some sign mismatches
This commit is contained in:
@@ -11,8 +11,8 @@
|
||||
*/
|
||||
|
||||
|
||||
const int MAX_VALUES = 200;
|
||||
const int MAX_PARAMS_PER_VALUE = 10;
|
||||
const unsigned MAX_VALUES = 200;
|
||||
const unsigned MAX_PARAMS_PER_VALUE = 10;
|
||||
|
||||
class MsdFile
|
||||
{
|
||||
@@ -28,6 +28,6 @@ public:
|
||||
|
||||
CString m_sParams[MAX_VALUES][MAX_PARAMS_PER_VALUE];
|
||||
|
||||
int m_iNumValues; // tells how many values are valid
|
||||
int m_iNumParams[MAX_VALUES]; // tells how many params this value has
|
||||
unsigned m_iNumValues; // tells how many values are valid
|
||||
unsigned m_iNumParams[MAX_VALUES]; // tells how many params this value has
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user