Skip to content

Commit

Permalink
Fixed scisoring bounds
Browse files Browse the repository at this point in the history
  • Loading branch information
efosamark committed Sep 4, 2024
1 parent 8aa7a46 commit 9971485
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/libtesla/include/tesla.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@

#pragma GCC diagnostic pop

#define ELEMENT_BOUNDS(elem) elem->getX(), elem->getY(), elem->getWidth(), elem->getHeight()
#define ELEMENT_BOUNDS(elem) elem->getX(), elem->getY(), elem->getWidth()-5, elem->getHeight()

#define ASSERT_EXIT(x) if (R_FAILED(x)) std::exit(1)
#define ASSERT_FATAL(x) if (Result res = x; R_FAILED(res)) fatalThrow(res)
Expand Down

0 comments on commit 9971485

Please sign in to comment.