DPF

DISTRHO Plugin Framework
Log | Files | Refs | Submodules | README | LICENSE

commit e47a1469717ad2c2f24db5f371fab6e86e96c39a
parent 28c8dbe12c30db10865333dc57197ba55f0597fd
Author: Patrick Desaulniers <desaulniers.patrick@carrefour.cegepvicto.ca>
Date:   Sun, 28 Jan 2018 13:57:44 -0500

Fix Circle<T>::getY()
Diffstat:
Mdgl/src/Geometry.cpp | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dgl/src/Geometry.cpp b/dgl/src/Geometry.cpp @@ -545,7 +545,7 @@ const T& Circle<T>::getX() const noexcept template<typename T> const T& Circle<T>::getY() const noexcept { - return fPos.fX; + return fPos.fY; } template<typename T>