unknown пре 8 година
родитељ
комит
af6e0faf0a
1 измењених фајлова са 3 додато и 3 уклоњено
  1. 3 3
      externals/microprofile/microprofileui.h

+ 3 - 3
externals/microprofile/microprofileui.h

@@ -1991,7 +1991,7 @@ const char* MicroProfileUIMenuGroups(int nIndex, bool* bSelected)
     else
     else
     {
     {
         nIndex = nIndex-1;
         nIndex = nIndex-1;
-        if(nIndex < UI.GroupMenuCount)
+        if(static_cast<uint32_t>(nIndex) < UI.GroupMenuCount)
         {
         {
             MicroProfileGroupMenuItem& Item = UI.GroupMenu[nIndex];
             MicroProfileGroupMenuItem& Item = UI.GroupMenu[nIndex];
             static char buffer[MICROPROFILE_NAME_MAX_LEN+32];
             static char buffer[MICROPROFILE_NAME_MAX_LEN+32];
@@ -2134,7 +2134,7 @@ const char* MicroProfileUIMenuCustom(int nIndex, bool* bSelected)
     case 1: return "--";
     case 1: return "--";
     default:
     default:
         nIndex -= 2;
         nIndex -= 2;
-        if(nIndex < UI.nCustomCount)
+        if(static_cast<uint32_t>(nIndex) < UI.nCustomCount)
         {
         {
             return UI.Custom[nIndex].pName;
             return UI.Custom[nIndex].pName;
         }
         }
@@ -2184,7 +2184,7 @@ void MicroProfileUIClickGroups(int nIndex)
     else
     else
     {
     {
         nIndex -= 1;
         nIndex -= 1;
-        if(nIndex < UI.GroupMenuCount)
+        if(static_cast<uint32_t>(nIndex) < UI.GroupMenuCount)
         {
         {
             MicroProfileGroupMenuItem& Item = UI.GroupMenu[nIndex];
             MicroProfileGroupMenuItem& Item = UI.GroupMenu[nIndex];
             if(Item.nIsCategory)
             if(Item.nIsCategory)