by Chris » Mon Nov 03, 2003 2:25 pm
Strings are referenced by index in ACS, not pointers like in C. When you declare a string, it's set to 0, meaning index 0(1st of 256 strings), until assigned something else. So when you set bla[0] to "heh"(the first string, index 0), all strings that reference index 0, will display "heh", until you change them.
Strings are referenced by index in ACS, not pointers like in C. When you declare a string, it's set to 0, meaning index 0(1st of 256 strings), until assigned something else. So when you set bla[0] to "heh"(the first string, index 0), all strings that reference index 0, will display "heh", until you change them.