Hi all,

I seem to be unable to access member pointers to structs. Here are the struct declarations in the class:

Code:
SpriteStruct* first;
SpriteStruct* last;
Any time I try to access first or last, I get an access violation at 0x00000000. Examples:

Code:
first = NULL;
if (first==NULL);
Thank you in advance for any information regarding this problem!