Region system PR review changes

Fixes errors or oversights with the region system for the PR review
This commit is contained in:
mothbeanie
2024-11-03 15:20:33 -08:00
committed by Misa Elizabeth Kai
parent 1fb0afb99d
commit 54b2aaae96
5 changed files with 26 additions and 16 deletions
+2 -2
View File
@@ -213,7 +213,7 @@ public:
int cursorstate, cursordelay;
//Region system
struct regionstruct
struct Region
{
bool isvalid;
int rx;
@@ -221,7 +221,7 @@ public:
int rx2;
int ry2;
};
struct regionstruct region[401];
struct Region region[401];
void setregion(int id, int rx, int ry, int rx2, int ry2);
void removeregion(int id);
void changeregion(int id);