|
nvm i'm a real ediot, i've overlooked one stupid line that crashes it completely :p
The above code works flawless there was an issue in my file reader that shifted to the next column (fColCount) to early.
Let me explain:
I read an file where i have each row on a line split with '\n' and each cell data is split with '\0'
The format of a header cell is "Title,150.0Ⓝ" and a function splits on each '\0' however where it needs to shift to the next column ('\0') it uses "++col" but ++col wasn't called on '\0' but right after title.
|