Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

Jack Airbourne

Open Source Platformer in Blitzbasic · By jfkEO1010etc

Bug notice, easy fix Sticky

A topic by jfkEO1010etc created Feb 10, 2021 Views: 118
Viewing posts 1 to 1
Developer

I just realized in the function LoadSound(), where there is the string "dumpfbacke", assembling HTML <audio> tags, these tags are not closed by a </audio> tag, so please insert that. Edit from:

dumpfbacke=dumpfbacke+"<audio src='"+path+"' preload muted style='position: absolute; top: 10px; left: 330px; display: none'>";

to

dumpfbacke=dumpfbacke+"<audio src='"+path+"' preload muted style='position: absolute; top: 10px; left: 330px; display: none'> </audio>";