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:
@@ -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 )
|
||||
|
||||
Reference in New Issue
Block a user