View Single Post
Exolent[jNr]
Veteran Member
Join Date: Feb 2007
Location: Tennessee
Old 05-04-2015 , 11:38   Re: Add two KeyValue files together
Reply With Quote #8

That method is much slower and uses more memory as well. I don't see the reason to do it that way.
Also, you should use an if statement when jumping to keys in case it fails, even if you tell it to create the key when it doesn't exist.

Code:
if (KvJumpToKey(myKv, "Key", true)) {     KvSetNum(myKv, "stuff", 1);     KvGoBack(myKv); }

That way you don't "Go Back" when it never moved in the first place.
__________________
No private work or selling mods.
Quote:
Originally Posted by xPaw View Post
I love you exolent!
Exolent[jNr] is offline