mirror of
https://github.com/Kelsidavis/WoWee.git
synced 2026-04-17 17:43:52 +00:00
cleanup: remove temporary PLAY_SOUND diagnostic logging
This commit is contained in:
parent
4fcb92dfdc
commit
c09a443b18
1 changed files with 0 additions and 6 deletions
|
|
@ -2895,12 +2895,10 @@ void Application::setupUICallbacks() {
|
||||||
|
|
||||||
const uint32_t row = static_cast<uint32_t>(idx);
|
const uint32_t row = static_cast<uint32_t>(idx);
|
||||||
std::string dir = dbc->getString(row, 23);
|
std::string dir = dbc->getString(row, 23);
|
||||||
std::string soundName = dbc->getString(row, 2);
|
|
||||||
for (uint32_t f = 3; f <= 12; ++f) {
|
for (uint32_t f = 3; f <= 12; ++f) {
|
||||||
std::string name = dbc->getString(row, f);
|
std::string name = dbc->getString(row, f);
|
||||||
if (name.empty()) continue;
|
if (name.empty()) continue;
|
||||||
std::string path = dir.empty() ? name : dir + "\\" + name;
|
std::string path = dir.empty() ? name : dir + "\\" + name;
|
||||||
LOG_WARNING("PLAY_SOUND: id=", soundId, " name='", soundName, "' path=", path);
|
|
||||||
audio::AudioEngine::instance().playSound2D(path);
|
audio::AudioEngine::instance().playSound2D(path);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
@ -2918,15 +2916,11 @@ void Application::setupUICallbacks() {
|
||||||
|
|
||||||
const uint32_t row = static_cast<uint32_t>(idx);
|
const uint32_t row = static_cast<uint32_t>(idx);
|
||||||
std::string dir = dbc->getString(row, 23);
|
std::string dir = dbc->getString(row, 23);
|
||||||
std::string soundName = dbc->getString(row, 2);
|
|
||||||
for (uint32_t f = 3; f <= 12; ++f) {
|
for (uint32_t f = 3; f <= 12; ++f) {
|
||||||
std::string name = dbc->getString(row, f);
|
std::string name = dbc->getString(row, f);
|
||||||
if (name.empty()) continue;
|
if (name.empty()) continue;
|
||||||
std::string path = dir.empty() ? name : dir + "\\" + name;
|
std::string path = dir.empty() ? name : dir + "\\" + name;
|
||||||
|
|
||||||
LOG_WARNING("PLAY_OBJECT_SOUND: id=", soundId, " name='", soundName, "' path=", path,
|
|
||||||
" src=0x", std::hex, sourceGuid, std::dec);
|
|
||||||
|
|
||||||
// Play as 3D sound if source entity position is available
|
// Play as 3D sound if source entity position is available
|
||||||
auto entity = gameHandler->getEntityManager().getEntity(sourceGuid);
|
auto entity = gameHandler->getEntityManager().getEntity(sourceGuid);
|
||||||
if (entity) {
|
if (entity) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue