diff options
| author | 2017-05-24 12:10:49 +0200 | |
|---|---|---|
| committer | 2017-05-24 12:10:49 +0200 | |
| commit | 8b81b079117e37d8e09d110bdffd3e6eaf2a3543 (patch) | |
| tree | df3940628d12129edd67f9ce8f4282129fbb8956 /src/modules/mediaplayer/MpAmipInterface.cpp | |
| parent | Build also in debug mode for windows (#2192) (diff) | |
| download | KVIrc-8b81b079117e37d8e09d110bdffd3e6eaf2a3543.tar.gz KVIrc-8b81b079117e37d8e09d110bdffd3e6eaf2a3543.tar.bz2 KVIrc-8b81b079117e37d8e09d110bdffd3e6eaf2a3543.zip | |
Make Windows code Unicode-aware (#2219)
Diffstat (limited to 'src/modules/mediaplayer/MpAmipInterface.cpp')
| -rw-r--r-- | src/modules/mediaplayer/MpAmipInterface.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/mediaplayer/MpAmipInterface.cpp b/src/modules/mediaplayer/MpAmipInterface.cpp index ddea46685..640c9fc8f 100644 --- a/src/modules/mediaplayer/MpAmipInterface.cpp +++ b/src/modules/mediaplayer/MpAmipInterface.cpp @@ -77,7 +77,7 @@ MP_AC_DYNPTR(int, ac_eval, const char * cmd COMMA() char * result); static bool loadAmipDll() { - amip_dll = LoadLibrary("ac.dll"); + amip_dll = LoadLibrary(TEXT("ac.dll")); if(!amip_dll) return false; |
