remove some unused params

This commit is contained in:
onezplpl 2024-07-16 00:16:55 -04:00
parent 579eb9f540
commit c4181e5c42
No known key found for this signature in database
GPG key ID: 7EC026A136F9EEC3
6 changed files with 28 additions and 34 deletions

10
main.c
View file

@ -100,7 +100,7 @@ void *render_chunks(void *args) {
*cube_count =
gen_cubes(*args2.cube, *args2.text, *args2.cubeO, *args2.textO,
args2.pos[0] / CHUNK_LENGTH, args2.pos[1] / CHUNK_LENGTH,
args2.pos[2] / CHUNK_LENGTH, 0, 0, args2.i2);
args2.pos[2] / CHUNK_LENGTH, 0, args2.i2);
*args2.is_render = 2;
@ -132,11 +132,11 @@ int main(void) {
Vertex *text = malloc(CTRI_ALL);
Vertex *cubeO = malloc(CTRI_ALL);
Vertex *textO = malloc(CTRI_ALL);
int bleh = (CHUNK_DIAMETER_H + MAX_R * 2) * (CHUNK_DIAMETER_V + MAX_R * 2);
int bleh = (CHUNK_DIAMETER_H) * (CHUNK_DIAMETER_V);
int *i2 = calloc(bleh, sizeof(int));
int cube_count = gen_cubes(cube, text, cubeO, textO, 10240 / CHUNK_LENGTH,
64 / CHUNK_LENGTH, 10240 / CHUNK_LENGTH, 0, 1, i2);
64 / CHUNK_LENGTH, 10240 / CHUNK_LENGTH, 1, i2);
GLuint vertex_buffer[2];
GLuint vertex_array;
@ -188,10 +188,10 @@ int main(void) {
vec3 oldPos = {0, 0, 0};
Chunk ch7;
ch7.exists = 0;
int state = cube_exists(pos[0], pos[1], pos[2], ch7, 0, 0);
int state = cube_exists(pos[0], pos[1], pos[2], ch7, 0);
while (1) {
if (state != cube_exists(pos[0], pos[1], pos[2], ch7, 0, 0))
if (state != cube_exists(pos[0], pos[1], pos[2], ch7, 0))
break;
pos[1] += (state ? 1 : -1);
}