clean up some sign mismatches

This commit is contained in:
Glenn Maynard
2002-10-31 03:25:35 +00:00
parent 7e9905995d
commit 32bf482480
10 changed files with 22 additions and 25 deletions
+4 -4
View File
@@ -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
};