Clean up names/signatures

This commit is contained in:
John Bintz 2024-07-17 07:38:47 -04:00
parent 777257b83d
commit 7656a6c653
1 changed files with 3 additions and 3 deletions

6
bun.c
View File

@ -329,7 +329,7 @@ void calculateAllBunPositions(
} }
} }
void buildBunAngleAdjustments() { void buildBunAngleAdjustments(void) {
int current, angleAdjustment; int current, angleAdjustment;
for (current = 0; current < BUN_COUNT; ++current) { for (current = 0; current < BUN_COUNT; ++current) {
angleAdjustment = 0; angleAdjustment = 0;
@ -340,7 +340,7 @@ void buildBunAngleAdjustments() {
} }
} }
void precalculeBunRenderInfo(void) { void precalculateBunRenderInfo(void) {
int plane; int plane;
for (plane = 0; plane < 2; ++plane) { for (plane = 0; plane < 2; ++plane) {
@ -362,7 +362,7 @@ void setupBunRenderer(
setupBun(); setupBun();
buildBunAngleAdjustments(); buildBunAngleAdjustments();
calculateAllBunPositions(screenSetup); calculateAllBunPositions(screenSetup);
precalculeBunRenderInfo(); precalculateBunRenderInfo();
} }
int hasBunClear[2] = {0,0}; int hasBunClear[2] = {0,0};