fix no chunk bug

This commit is contained in:
onezplpl 2024-07-14 09:27:46 -04:00
parent e21945fe23
commit 4b4a2a056a
No known key found for this signature in database
GPG key ID: 7EC026A136F9EEC3
3 changed files with 9 additions and 9 deletions

View file

@ -14,9 +14,9 @@ typedef struct Vertex2 {
vec2 pos;
} Vertex2;
#define CHUNK_LENGTH 8
#define CHUNK_RADIUS_H 16 // 8
#define CHUNK_RADIUS_V 8 // 4
#define CHUNK_LENGTH 16
#define CHUNK_RADIUS_H 8 // 8
#define CHUNK_RADIUS_V 4 // 4
#define TEXT_GAP_H 1 / 3.0
#define TEXT_GAP_V 1 / 1.0