mirror of
https://github.com/osukey/osukey.git
synced 2025-08-05 07:33:55 +09:00
Apply some renaming and code quality fixes
This commit is contained in:
@ -66,10 +66,10 @@ namespace osu.Game.Tests.Visual.Audio
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void TestLowPass() => testFilter(lowpassFilter, lowpassFilter.MaxCutoff, 0);
|
||||
public void TestLowPass() => testFilter(lowpassFilter, AudioFilter.MAX_LOWPASS_CUTOFF, 0);
|
||||
|
||||
[Test]
|
||||
public void TestHighPass() => testFilter(highpassFilter, 0, highpassFilter.MaxCutoff);
|
||||
public void TestHighPass() => testFilter(highpassFilter, 0, AudioFilter.MAX_LOWPASS_CUTOFF);
|
||||
|
||||
private void testFilter(Filter filter, int cutoffFrom, int cutoffTo)
|
||||
{
|
||||
|
Reference in New Issue
Block a user