Now I tryed what PSPJUNKIE_ told me to, but it's coming up with compiler errors.
This is the part of the code with the errors:
Code:
Image* logo;
logo->imageWidth = 470;
logo->imageHeight = 272;
logo->textureWidth = 471;
logo->textureHeight = 272;
logo->data = /* I would put data here, but it would be too big. */
The compiling errors are:
main.cpp:46: error: expected constuctor, destructor, or type conversion befor '->' token.
main.cpp:47: error: expected constuctor, destructor, or type conversion befor '->' token.
main.cpp:48: error: expected constuctor, destructor, or type conversion befor '->' token.
main.cpp:49: error: expected constuctor, destructor, or type conversion befor '->' token.
main.cpp:50: error: expected constuctor, destructor, or type conversion befor '->' token.
Yeah. I think I'm missing something (no duh?) I think it's classes, but I'm not sure.