isle: Accuracy improvements (#27)

* Isle::Isle 100% accuracy

* Isle::~Isle 100%

* improve accuracy of ReadReg functions

* refactor

* fix Isle::ReadRegBool

* fix Isle::ReadRegInt

* empty commit to reset GH action

* fix Isle::SetupLegoOmni
This commit is contained in:
Christian Semmler
2023-06-21 09:30:46 +02:00
committed by GitHub
parent 6207d1f775
commit 124a5ddaa3
3 changed files with 30 additions and 20 deletions

View File

@@ -4,6 +4,14 @@
class MxRect32
{
public:
MxRect32(int p_left, int p_top, int p_right, int p_bottom)
{
this->m_left = p_left;
this->m_top = p_top;
this->m_right = p_right;
this->m_bottom = p_bottom;
}
int m_left;
int m_top;
int m_right;