aboutsummaryrefslogtreecommitdiff
path: root/utils/gen_adldata/progs_cache.cpp
diff options
context:
space:
mode:
authorWohlstand <admin@wohlnet.ru>2017-10-22 04:38:58 +0300
committerWohlstand <admin@wohlnet.ru>2017-10-22 04:38:58 +0300
commit9de1ad18d5305f21cb6998bdd88144893d0e121d (patch)
treea0fa5793da75584bf445e43a8a86839227ee622a /utils/gen_adldata/progs_cache.cpp
parent38ab46ec1945bc070e278f91ea8c49de3bba759b (diff)
downloadlibADLMIDI-9de1ad18d5305f21cb6998bdd88144893d0e121d.tar.gz
libADLMIDI-9de1ad18d5305f21cb6998bdd88144893d0e121d.tar.bz2
libADLMIDI-9de1ad18d5305f21cb6998bdd88144893d0e121d.zip
Fix MSVC CMake compilation
TODO: Fix a freaking MSVC's "invalid comparator" assert given by std::map::lower_bound() call
Diffstat (limited to 'utils/gen_adldata/progs_cache.cpp')
-rw-r--r--utils/gen_adldata/progs_cache.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/gen_adldata/progs_cache.cpp b/utils/gen_adldata/progs_cache.cpp
index 9a12b5c..b51f4f8 100644
--- a/utils/gen_adldata/progs_cache.cpp
+++ b/utils/gen_adldata/progs_cache.cpp
@@ -100,7 +100,7 @@ size_t InsertIns(
size_t InsertNoSoundIns()
{
// { 0x0F70700,0x0F70710, 0xFF,0xFF, 0x0,+0 },
- insdata tmp1 = { {0x00, 0x10, 0x07, 0x07, 0xF7, 0xF7, 0x00, 0x00, 0xFF, 0xFF, 0x00}, 0, 0 };
+ insdata tmp1 = { {0x00, 0x10, 0x07, 0x07, 0xF7, 0xF7, 0x00, 0x00, 0xFF, 0xFF, 0x00}, 0, false};
struct ins tmp2 = { 0, 0, 0, false, 0.0 };
return InsertIns(tmp1, tmp1, tmp2, "nosound", "");
}