warning 213: tag mismatch
#3

You either use
MATERAL:3 and MATERIAL:4
or just write enum name.
- >
PHP код:
format(string,sizeof(string),"%s\t%d\n",Material[i][MName],Material[i][MPrice]);//warning 213: tag mismatch. 
Or ->

PHP код:
enum MATERIAL {
    
MModel// 0
    
Material1[24], // 1
    
Material2[24], // 25
    
MName[24], // 49
    
MPrice // 73
}; 
So
PHP код:
format(string,sizeof(string),"%s\t%d\n",Material[i][MATERIAL:49],Material[i][MATERIAL:73]); 
I don't recommend using that and the values I wrote maybe incorrect.
Reply


Messages In This Thread
warning 213: tag mismatch - by 3417512908 - 25.07.2018, 12:06
Re: warning 213: tag mismatch - by Florin48 - 25.07.2018, 12:11
Re: warning 213: tag mismatch - by jlalt - 25.07.2018, 12:20

Forum Jump:


Users browsing this thread: 3 Guest(s)