Quote:
Originally Posted by Arkshine
edon1337, it's okay to help if you know something, but please avoid to answer randomly.
If you look at 'bMoreThanOne', you see it's a boolean. What you're doing doesn't make sense at all.
Issue is more because compiler is dumb. You must provide both either indexed or not indexed, i.e either "condition ? array1 : array2" or "condition ? array1[index1] : array2[index2].
It might work if you use "szValue[0]".
|
I noticed it when I created
new aaa[4] and changed to
bMoreThanOne ? szValue : aaa and it worked then what you said should work. I got it, thx
__________________