Add missing magic tag in include file (previous patch). For some reason my change was ignored.

This commit is contained in:
Arkshine 2014-04-11 23:02:46 +02:00
parent 8a1464ac41
commit b3609a23fa

View File

@ -30,7 +30,7 @@ native DataPack:CreateDataPack();
* @noreturn
* @error Invalid handle.
*/
native WritePackCell(DataPack:pack, cell);
native WritePackCell(DataPack:pack, any:cell);
/**
* Packs a float into a data pack.
@ -59,7 +59,7 @@ native WritePackString(DataPack:pack, const str[]);
* @return Cell value.
* @error Invalid handle, or bounds error.
*/
native ReadPackCell(DataPack:pack);
native any:ReadPackCell(DataPack:pack);
/**
* Reads a float from a data pack.