Skip to content

Commit

Permalink
Windows|Fixed: Build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed May 11, 2017
1 parent aa8143c commit 0bdaf3d
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 9 deletions.
1 change: 1 addition & 0 deletions doomsday/apps/client/src/gl/dgl_common.cpp
Expand Up @@ -898,6 +898,7 @@ static gl::Wrapping DGL_ToGLWrapCap(DGLint cap)
DENG2_ASSERT(!"DGL_ToGLWrapCap: Unknown cap value");
break;
}
return gl::ClampToEdge;
}

#undef DGL_SetMaterialUI
Expand Down
14 changes: 7 additions & 7 deletions doomsday/apps/plugins/fmod/api/audio_fmod.def
Expand Up @@ -39,10 +39,10 @@ DM_Music_Play
DM_Music_PlayFile

; CD audio interface
DM_CDAudio_Init
DM_CDAudio_Update
DM_CDAudio_Set
DM_CDAudio_Get
DM_CDAudio_Pause
DM_CDAudio_Stop
DM_CDAudio_Play
;DM_CDAudio_Init
;DM_CDAudio_Update
;DM_CDAudio_Set
;DM_CDAudio_Get
;DM_CDAudio_Pause
;DM_CDAudio_Stop
;DM_CDAudio_Play
4 changes: 2 additions & 2 deletions doomsday/cmake/FindFMOD.cmake
Expand Up @@ -43,10 +43,10 @@ if (FMOD_FMOD_H AND NOT TARGET fmodex)
elseif (MSVC)
if (ARCH_BITS EQUAL 64)
set (fmodLib "${fmodApi}/lib/fmod64_vc.lib")
set (fmodInstLib "${fmodApi}/fmod64.dll")
set (fmodInstLib "${fmodApi}/lib/fmod64.dll")
else ()
set (fmodLib "${fmodApi}/lib/fmod_vc.lib")
set (fmodInstLib "${fmodApi}/fmod.dll")
set (fmodInstLib "${fmodApi}/lib/fmod.dll")
endif ()
elseif (UNIX)
if (ARCH_BITS EQUAL 64)
Expand Down
4 changes: 4 additions & 0 deletions doomsday/sdk/libcore/src/core/library.cpp
Expand Up @@ -22,6 +22,10 @@
#include "de/Log"
#include "de/LogBuffer"

#if !defined (DENG_STATIC_LINK)
# include <QLibrary>
#endif

#include <array>

namespace de {
Expand Down

0 comments on commit 0bdaf3d

Please sign in to comment.