mirror of
https://github.com/cookiengineer/audacity
synced 2025-07-13 07:07:46 +02:00
Fix assert when mixing to new track
This commit is contained in:
parent
aceb34d786
commit
d9b5129e64
@ -86,11 +86,11 @@ void DoMixAndRender
|
|||||||
if (pNewRight)
|
if (pNewRight)
|
||||||
msg.Printf(
|
msg.Printf(
|
||||||
_("Mixed and rendered %d tracks into one new stereo track"),
|
_("Mixed and rendered %d tracks into one new stereo track"),
|
||||||
selectedCount);
|
(int)selectedCount);
|
||||||
else
|
else
|
||||||
msg.Printf(
|
msg.Printf(
|
||||||
_("Mixed and rendered %d tracks into one new mono track"),
|
_("Mixed and rendered %d tracks into one new mono track"),
|
||||||
selectedCount);
|
(int)selectedCount);
|
||||||
project.PushState(msg, _("Mix and Render"));
|
project.PushState(msg, _("Mix and Render"));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user