Removed unnecessary comments

This commit is contained in:
2025-03-30 22:42:29 +03:00
parent f96a344573
commit 12c328d4c5

View File

@@ -29,8 +29,6 @@ int main(int argc, char** argv) {
// Board Constraints // Board Constraints
printf("Set board size (15 - 60, default: 15): "); printf("Set board size (15 - 60, default: 15): ");
/*scanf("%d", &brdInfo.y);*/
/*emptyStdinBuffer();*/
getIntOrMinusOne(&brdInfo.y); getIntOrMinusOne(&brdInfo.y);
if (!(brdInfo.y >= 15 && brdInfo.y <= 60) || brdInfo.y == -1) { if (!(brdInfo.y >= 15 && brdInfo.y <= 60) || brdInfo.y == -1) {
brdInfo.y = 15; brdInfo.y = 15;