Commit 93764466 authored by hybrid's avatar hybrid

Fix ifdef nesting. The linking against winmm was wrongly placed in an else branch.

git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@3774 dfc29bdd-3216-0410-991c-e03cc46cb475
parent 1869d1ec
...@@ -25,12 +25,12 @@ ...@@ -25,12 +25,12 @@
#pragma comment(lib, "dinput8.lib") #pragma comment(lib, "dinput8.lib")
#pragma comment(lib, "dxguid.lib") #pragma comment(lib, "dxguid.lib")
#endif #endif
#endif
#else #else
#ifdef _MSC_VER #ifdef _MSC_VER
#pragma comment(lib, "winmm.lib") #pragma comment(lib, "winmm.lib")
#endif #endif
#endif #endif
#endif
namespace irr namespace irr
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment