MrDezibel Member Licensed User Longtime User Oct 19, 2019 #1 Hi, i'm reading a map file with puffermap=File.ReadMap(path,"puffermap.txt") and Log(puffermap.Size) always says 6570, even though ther are more than 13000 entrys in the file. Is 6570 the maximum of a map or am i missing something else..?
Hi, i'm reading a map file with puffermap=File.ReadMap(path,"puffermap.txt") and Log(puffermap.Size) always says 6570, even though ther are more than 13000 entrys in the file. Is 6570 the maximum of a map or am i missing something else..?
LucaMs Expert Licensed User Longtime User Oct 19, 2019 #2 https://www.b4x.com/android/forum/threads/map-list-crash.79849/#post-505655 Upvote 0
DonManfred Expert Licensed User Longtime User Oct 19, 2019 #3 MrDezibel said: always says 6570, even though ther are more than 13000 entrys in the file. Click to expand... A map can only contain unique keys. 6570 in this case. some of the 13000 have he same KEY, right? Upvote 0
MrDezibel said: always says 6570, even though ther are more than 13000 entrys in the file. Click to expand... A map can only contain unique keys. 6570 in this case. some of the 13000 have he same KEY, right?
MrDezibel Member Licensed User Longtime User Oct 19, 2019 #4 DonManfred said: A map can only contain unique keys. 6570 in this case. some of the 13000 have he same KEY, right? Click to expand... Yes, you are right... just found the bug... Thanks guys Upvote 0
DonManfred said: A map can only contain unique keys. 6570 in this case. some of the 13000 have he same KEY, right? Click to expand... Yes, you are right... just found the bug... Thanks guys