Jump to content

[BUG+FIX] WPI error if exit sound is defined but theme is missing


Recommended Posts

Posted (edited)

Cause

WPI tries to execute the exit sound even when the main window has not still been completely created.

Fix

in timers.js replace

	StopSound();
document.getElementById("TimerSound").src=ReplacePath(soundfile).replace(/\"/g,'');

with

	var TimerSoundElement = document.getElementById("TimerSound");
if (TimerSoundElement)
{
StopSound();
TimerSoundElement.src=ReplacePath(soundfile).replace(/\"/g,'');
}

Edited by Francesco

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...