diff options
author | 2025-05-20 19:50:54 +0200 | |
---|---|---|
committer | 2025-05-20 19:50:54 +0200 | |
commit | 6613969cd6511acb4f7faf6ab99caa9ee8838a2e (patch) | |
tree | 49505a5ceff0bb54947ed23c0b97e9b1d1f7c746 /src/main/main.c | |
parent | 9a1b0eb36cf9200b190f58af2c8289f5690dd0be (diff) | |
download | tris-6613969cd6511acb4f7faf6ab99caa9ee8838a2e.tar.gz tris-6613969cd6511acb4f7faf6ab99caa9ee8838a2e.zip |
Remove the transformation from pixel to OpenGL coordinates
Diffstat (limited to 'src/main/main.c')
-rw-r--r-- | src/main/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/main.c b/src/main/main.c index 6a252c0..9014c3a 100644 --- a/src/main/main.c +++ b/src/main/main.c @@ -31,7 +31,7 @@ void draw_frame() { - game_draw_field(100, 10, 10); + game_draw_field(0.5, 0, 0); } int main(void) { |