You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following two while loops have the same test being performed twice. Makes me wonder if there was supposed to be some other test on the right hand side:
while (x + width <= bottomRightX || x + width <= bottomRightX)
{
x++;
}
while (y + height <= bottomRightY || y + height <= bottomRightY)
{
y++;
}
The text was updated successfully, but these errors were encountered:
The following two while loops have the same test being performed twice. Makes me wonder if there was supposed to be some other test on the right hand side:
The text was updated successfully, but these errors were encountered: