fixed capitalization on uint64 keyvalues natives

--HG--
extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%40822
This commit is contained in:
David Anderson
2007-05-19 21:36:14 +00:00
parent a55400b0ac
commit 2cad3c3424
2 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -76,7 +76,7 @@ native KvSetNum(Handle:kv, const String:key[], value);
* @noreturn
* @error Invalid Handle.
*/
native KvSetUint64(Handle:kv, const String:key[], const value[2]);
native KvSetUInt64(Handle:kv, const String:key[], const value[2]);
/**
* Sets a floating point value of a KeyValues key.
@@ -162,7 +162,7 @@ native KvGetColor(Handle:kv, const String:key[], &r, &g, &b, &a);
* @noreturn
* @error Invalid Handle.
*/
native KvGetUint64(Handle:kv, const String:key[], value[2], defvalue[2]={0,0});
native KvGetUInt64(Handle:kv, const String:key[], value[2], defvalue[2]={0,0});
/**
* Sets the current position in the KeyValues tree to the given key.