I tyied to compile it on linux. At the first time it gave me an error saying fullscreen was not declared. So, I looked at the code and it have chanced the following line:
SDLMain.c:221: fullscreen = 1 - fullscreen;
by this one:
SDLMain.c:221: int fullscreen = 1;
It seems to me that "fullscreen" should be a global, am I wrong?
After making this, it compiled.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Yes, its a global variable.
The thing was that I didn't update the file on cvs that have the global declaration of the fullscreen variable. Sorry for that and as soon as I can, I'll update the var.c/h files on cvs.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I tyied to compile it on linux. At the first time it gave me an error saying fullscreen was not declared. So, I looked at the code and it have chanced the following line:
SDLMain.c:221: fullscreen = 1 - fullscreen;
by this one:
SDLMain.c:221: int fullscreen = 1;
It seems to me that "fullscreen" should be a global, am I wrong?
After making this, it compiled.
Yes, its a global variable.
The thing was that I didn't update the file on cvs that have the global declaration of the fullscreen variable. Sorry for that and as soon as I can, I'll update the var.c/h files on cvs.