Remove Reference To Deleted File

This commit is contained in:
TheBrokenRail 2024-05-22 02:15:21 -04:00
parent 1dc23fe615
commit fedc006a4b

View File

@ -37,7 +37,7 @@ std::string _sound_get_source_file() {
// Check If Sound Exists // Check If Sound Exists
if (access(path, F_OK) == -1) { if (access(path, F_OK) == -1) {
// Fail // Fail
WARN("Audio Source File Doesn't Exist: " SOURCE_FILE_BASE " (See: https://gitea.thebrokenrail.com/minecraft-pi-reborn/minecraft-pi-reborn/src/branch/master/docs/SOUND.md)"); WARN("Audio Source File Doesn't Exist: " SOURCE_FILE_BASE);
source.assign(""); source.assign("");
info_sound_data_state = "Missing"; info_sound_data_state = "Missing";
} else { } else {