There's a lot of info/pics about it, and the download, at http://www.kfhgames.com/ .
Last edited by Schabbs on Fri Aug 19, 2011 7:17 am; edited 1 time in total
A friendly Wolfenstein 3D community, about Wolfenstein 3D, the game that gave birth to first person shooters...
Codetech84 wrote:Oh yeah, I forgot to mention, those who are upgrading from previous beta, you should go and delete the file "saves/klooni.cfg", that should do it I hope.
unsigned screenBits = -1;
unsigned screenBits = 0;
if(screenBits == -1)
{
const SDL_VideoInfo *vidInfo = SDL_GetVideoInfo();
screenBits = vidInfo->vfmt->BitsPerPixel;
}
screen = SDL_SetVideoMode(screenWidth, screenHeight, screenBits, (usedoublebuffering ? SDL_HWSURFACE | SDL_DOUBLEBUF : 0) | (screenBits == 8 ? SDL_HWPALETTE : 0) | (fullscreen ? SDL_FULLSCREEN : 0));