12.03.2015, 15:11
How to fix this warn??
Warn from this:
https://sampforum.blast.hk/showthread.php?tid=567255
Code:
./FGRP.pwn(3978) : warning 203: symbol is never used: "z"
Code:
stock Get2DZoneFromCoordinates(Float:x, Float:y, Float:z, zone[], len = sizeof(zone)) { for(new i = 0; i != sizeof(gSAZones); i++ ) { if(x >= gSAZones[i][SAZONE_AREA][0] && x <= gSAZones[i][SAZONE_AREA][3] && y >= gSAZones[i][SAZONE_AREA][1] && y <= gSAZones[i][SAZONE_AREA][4]) { return format(zone, len, gSAZones[i][SAZONE_NAME], 0); } } return 0; }