mirror of
				https://git.suyu.dev/suyu/suyu.git
				synced 2025-11-04 12:34:39 +08:00 
			
		
		
		
	Fix some warnings
This commit is contained in:
		
							parent
							
								
									22347e8844
								
							
						
					
					
						commit
						af6e0faf0a
					
				
							
								
								
									
										6
									
								
								externals/microprofile/microprofileui.h
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										6
									
								
								externals/microprofile/microprofileui.h
									
									
									
									
										vendored
									
									
								
							@ -1991,7 +1991,7 @@ const char* MicroProfileUIMenuGroups(int nIndex, bool* bSelected)
 | 
			
		||||
    else
 | 
			
		||||
    {
 | 
			
		||||
        nIndex = nIndex-1;
 | 
			
		||||
        if(nIndex < UI.GroupMenuCount)
 | 
			
		||||
        if(static_cast<uint32_t>(nIndex) < UI.GroupMenuCount)
 | 
			
		||||
        {
 | 
			
		||||
            MicroProfileGroupMenuItem& Item = UI.GroupMenu[nIndex];
 | 
			
		||||
            static char buffer[MICROPROFILE_NAME_MAX_LEN+32];
 | 
			
		||||
@ -2134,7 +2134,7 @@ const char* MicroProfileUIMenuCustom(int nIndex, bool* bSelected)
 | 
			
		||||
    case 1: return "--";
 | 
			
		||||
    default:
 | 
			
		||||
        nIndex -= 2;
 | 
			
		||||
        if(nIndex < UI.nCustomCount)
 | 
			
		||||
        if(static_cast<uint32_t>(nIndex) < UI.nCustomCount)
 | 
			
		||||
        {
 | 
			
		||||
            return UI.Custom[nIndex].pName;
 | 
			
		||||
        }
 | 
			
		||||
@ -2184,7 +2184,7 @@ void MicroProfileUIClickGroups(int nIndex)
 | 
			
		||||
    else
 | 
			
		||||
    {
 | 
			
		||||
        nIndex -= 1;
 | 
			
		||||
        if(nIndex < UI.GroupMenuCount)
 | 
			
		||||
        if(static_cast<uint32_t>(nIndex) < UI.GroupMenuCount)
 | 
			
		||||
        {
 | 
			
		||||
            MicroProfileGroupMenuItem& Item = UI.GroupMenu[nIndex];
 | 
			
		||||
            if(Item.nIsCategory)
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user