1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-11-23 17:30:17 +01:00

Fix minor issues when building for 64-bit Windows

This commit is contained in:
Leland Lucius
2020-02-12 13:07:55 -06:00
parent 99aded10f5
commit 85219e371c
3 changed files with 5 additions and 5 deletions

View File

@@ -372,7 +372,7 @@ void ShuttleGetAutomation::Define( int & var, const wxChar * key, const int
void ShuttleGetAutomation::Define( size_t & var, const wxChar * key, const int vdefault, const int vmin, const int vmax, const int vscl )
{
if( !ShouldSet() ) return;
mpEap->Write(key, var);
mpEap->Write(key, (int) var);
}
void ShuttleGetAutomation::Define( double & var, const wxChar * key, const float vdefault, const float vmin, const float vmax, const float vscl )