DirectX Release build works through VS2010, but not exe

ε祈祈猫儿з 提交于 2019-12-06 04:44:23

Deadlines loomed and more important matters subsided, so I did some fiddling with build configurations.

Turns out that in the default debug configuration, C/C++, Code Generation, Runtime Library is set to 'Multi-threaded Debug DLL (/MDd)'. In release this is set to 'Multi-threaded DLL (/MD)'. Switching this setting to match the release configuration results in a build which runs through visual studio, but displays a black screen outside of it.

I still have no idea of the cause of this, so any other answers would be appreciated.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!