Removed two warnings.
This commit is contained in:
parent
1e6a61e1e1
commit
28f0a59249
2 changed files with 2 additions and 2 deletions
|
@ -86,7 +86,7 @@ namespace OpenTK.Audio
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch (Exception e)
|
catch (Exception)
|
||||||
{
|
{
|
||||||
s.Close();
|
s.Close();
|
||||||
throw;
|
throw;
|
||||||
|
|
|
@ -191,7 +191,7 @@ namespace OpenTK.Audio
|
||||||
//return new SoundData(decoded_data, new SoundFormat(channels, bits_per_sample, sample_rate));
|
//return new SoundData(decoded_data, new SoundFormat(channels, bits_per_sample, sample_rate));
|
||||||
return decoded_data;
|
return decoded_data;
|
||||||
}
|
}
|
||||||
catch (AudioReaderException e)
|
catch (AudioReaderException)
|
||||||
{
|
{
|
||||||
reader.Close();
|
reader.Close();
|
||||||
throw;
|
throw;
|
||||||
|
|
Loading…
Reference in a new issue