1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-05-04 09:39:42 +02:00

Fix assert when mixing to new track

This commit is contained in:
Steve Daulton 2018-11-10 15:04:13 +00:00
parent aceb34d786
commit d9b5129e64

View File

@ -86,11 +86,11 @@ void DoMixAndRender
if (pNewRight)
msg.Printf(
_("Mixed and rendered %d tracks into one new stereo track"),
selectedCount);
(int)selectedCount);
else
msg.Printf(
_("Mixed and rendered %d tracks into one new mono track"),
selectedCount);
(int)selectedCount);
project.PushState(msg, _("Mix and Render"));
}