mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-01 16:05:07 +01:00
chore: Fix GCC 13 compilation and SoundTouch libraries being installed. (#6593)
This commit is contained in:
parent
abd949fea1
commit
52f88f8fb4
2
externals/CMakeLists.txt
vendored
2
externals/CMakeLists.txt
vendored
@ -114,7 +114,7 @@ add_subdirectory(open_source_archives)
|
||||
set(INTEGER_SAMPLES ON CACHE BOOL "")
|
||||
set(SOUNDSTRETCH OFF CACHE BOOL "")
|
||||
set(SOUNDTOUCH_DLL OFF CACHE BOOL "")
|
||||
add_subdirectory(soundtouch)
|
||||
add_subdirectory(soundtouch EXCLUDE_FROM_ALL)
|
||||
|
||||
# Teakra
|
||||
add_subdirectory(teakra EXCLUDE_FROM_ALL)
|
||||
|
@ -22,7 +22,7 @@ bool VerifyLogin(const std::string& host, const std::string& username, const std
|
||||
return username.empty();
|
||||
}
|
||||
|
||||
return username == *iter;
|
||||
return *iter == username;
|
||||
}
|
||||
|
||||
} // namespace WebService
|
||||
|
Loading…
Reference in New Issue
Block a user