Added support for transparent interface windows (#25)

This commit is contained in:
NovaRain
2020-10-03 21:01:54 +08:00
parent 548039d5bc
commit 9d34a4c70a
9 changed files with 286 additions and 34 deletions
+1 -1
View File
@@ -345,7 +345,7 @@ static bool __fastcall SoundFileLoad(PlayType playType, const char* path) {
if (!path) return false;
/*if (playType == PLAYTYPE_sfx) {
auto it = sfxSoundsFiles.find(path);
std::unordered_map<std::string, std::wstring>::iterator it = sfxSoundsFiles.find(path);
if (it != sfxSoundsFiles.cend()) {
return (PlayingSound(it->second.c_str(), SNDMODE_single_play) != nullptr);
}