C++ SDL “Native' has exited with code -1073741701 (0xc000007b)”

前端 未结 3 541
梦毁少年i
梦毁少年i 2020-12-21 12:17

My Code

#include \"SDL.h\"
#include 
#undef main

int main ( void ) {
SDL_Init( SDL_INIT_EVERYTHING );
SDL_Quit(  );
return 0;
}
3条回答
  •  情书的邮戳
    2020-12-21 12:49

    I am not sure if this will help you. I have run into the same error with OpenCv. It turned out that I was linking the x64 DLLs instead of the x86 DLLs.

提交回复
热议问题