Remove Reference To Deleted File
Some checks failed
CI / Build (ARM64, Client) (push) Waiting to run
CI / Build (ARM64, Server) (push) Waiting to run
CI / Build (ARMHF, Client) (push) Waiting to run
CI / Build (ARMHF, Server) (push) Waiting to run
CI / Test (Client) (push) Waiting to run
CI / Test (Server) (push) Waiting to run
CI / Build Example Mods (push) Waiting to run
CI / Release (push) Blocked by required conditions
CI / Build (AMD64, Server) (push) Has been cancelled
CI / Build (AMD64, Client) (push) Has been cancelled

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
if (access(path, F_OK) == -1) {
// 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("");
info_sound_data_state = "Missing";
} else {