mirror of
https://github.com/cookiengineer/audacity
synced 2025-07-17 09:07:41 +02:00
Fix incorrect type
This commit is contained in:
parent
d22edcbc10
commit
8fc6f340b5
@ -647,7 +647,7 @@ bool ProjectAudioManager::DoRecord(AudacityProject &project,
|
||||
wxString nameSuffix = wxString(wxT(""));
|
||||
|
||||
if (useTrackNumber) {
|
||||
nameSuffix += wxString::Format(wxT("%d"), 1 + numTracks + c);
|
||||
nameSuffix += wxString::Format(wxT("%d"), 1 + (int) numTracks + c);
|
||||
}
|
||||
|
||||
if (useDateStamp) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user