SA-MP Forums Archive
warning 201: redefinition of constant/macro (symbol "zInfo") - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: warning 201: redefinition of constant/macro (symbol "zInfo") (/showthread.php?tid=516410)



warning 201: redefinition of constant/macro (symbol "zInfo") - xFirex - 31.05.2014

pawn Код:
enum mInfo
{
  Float:zID,
  Text3D:zInfo, // warning
  Float:zx,
  Float:zy,
  Float:zz
}



Re: warning 201: redefinition of constant/macro (symbol "zInfo") - Twizted - 31.05.2014

zInfo is already defined in your script and you're trying to redefine it.


Re: warning 201: redefinition of constant/macro (symbol "zInfo") - xFirex - 31.05.2014

thanks