mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2025-08-04 16:38:22 +00:00
Reword two identical errors
This commit is contained in:
parent
6ae21a5c97
commit
4030aad35d
1 changed files with 2 additions and 2 deletions
|
@ -921,14 +921,14 @@ void musicclass::init(void)
|
|||
FILESYSTEM_loadAssetToMemory(asset_filename, &mem, &len);
|
||||
if (mem == NULL)
|
||||
{
|
||||
vlog_error("Unable to read loose music file: %s", SDL_GetError());
|
||||
vlog_error("Unable to load loose music file to memory: %s", SDL_GetError());
|
||||
}
|
||||
else
|
||||
{
|
||||
rw = SDL_RWFromConstMem(mem, len);
|
||||
if (rw == NULL)
|
||||
{
|
||||
vlog_error("Unable to read loose music file: %s", SDL_GetError());
|
||||
vlog_error("Unable to read loose music file from memory: %s", SDL_GetError());
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue