I had have some problems to setup the SDL on my PC .
I already copy all DLL fonts to the folders System32 or SysWOW64 (I've tried both). And make the all the setup in Visual Studio 2012, but when I try to initialize the SDL one error appers:
The program '[8184] "MyProject".exe' has exited with code -1073741701 (0xc000007b). ?
It happens when I try to include SDL.h on my cpp file:
#include <SDL.h>
int main( int argc, char* args[] )
{
//Start SDL
SDL_Init( SDL_INIT_EVERYTHING );
//Quit SDL
SDL_Quit();
return 0;
}