aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/midi/sf2load.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2013-12-29 00:56:01 -0800
committerChris Robinson <[email protected]>2013-12-29 00:56:01 -0800
commit4659669a740a2501b93aa54ae925eeb91ac5e80d (patch)
tree8717f1dc54020b0f7aad305884048dcc9154cd71 /Alc/midi/sf2load.c
parent5aa274999c26c7a84b78af8b202d7c7077cdcbc9 (diff)
Fix copy-paste errors in error messages
Diffstat (limited to 'Alc/midi/sf2load.c')
-rw-r--r--Alc/midi/sf2load.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Alc/midi/sf2load.c b/Alc/midi/sf2load.c
index f3fb99aa..e8b4fb1b 100644
--- a/Alc/midi/sf2load.c
+++ b/Alc/midi/sf2load.c
@@ -491,7 +491,7 @@ static void GenModList_insertMod(GenModList *self, const Modulator *mod)
temp = realloc(self->mods, newsize * sizeof(self->mods[0]));
if(!temp)
{
- ERR("Failed to increase generator storage to %d elements (from %d)\n",
+ ERR("Failed to increase modulator storage to %d elements (from %d)\n",
newsize, self->mods_max);
return;
}
@@ -527,7 +527,7 @@ static void GenModList_accumMod(GenModList *self, const Modulator *mod)
temp = realloc(self->mods, newsize * sizeof(self->mods[0]));
if(!temp)
{
- ERR("Failed to increase generator storage to %d elements (from %d)\n",
+ ERR("Failed to increase modulator storage to %d elements (from %d)\n",
newsize, self->mods_max);
return;
}