correct a bounds test
This commit is contained in:
parent
ae0ac8d632
commit
5463f143e0
1 changed files with 2 additions and 2 deletions
|
|
@ -522,8 +522,8 @@ TEST_CASE("[Region] Parsing opcodes")
|
||||||
REQUIRE(region.volume == -123.0f);
|
REQUIRE(region.volume == -123.0f);
|
||||||
region.parseOpcode({ "volume", "-185" });
|
region.parseOpcode({ "volume", "-185" });
|
||||||
REQUIRE(region.volume == -144.0f);
|
REQUIRE(region.volume == -144.0f);
|
||||||
region.parseOpcode({ "volume", "19" });
|
region.parseOpcode({ "volume", "79" });
|
||||||
REQUIRE(region.volume == 6.0f);
|
REQUIRE(region.volume == 48.0f);
|
||||||
}
|
}
|
||||||
|
|
||||||
SECTION("pan")
|
SECTION("pan")
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue