summary refs log tree commit diff
path: root/src/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/main.cpp b/src/main.cpp
index ad6148e..3fc1711 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -39,13 +39,13 @@ void run() {
     glViewport(0, 0, WINDOW_WIDTH, WINDOW_HEIGHT);
 
     MC::Mesh quad({
-        {-0.5, -0.5, 0.0},
-        {0.5, -0.5, 0.0},
-        {-0.5, 0.5, 0.0},
+        {-0.5f, -0.5f, 0.0f},
+        {0.5f, -0.5f, 0.0f},
+        {-0.5f, 0.5f, 0.0f},
 
-        {0.5, 0.5, 0.0},
-        {-0.5, 0.5, 0.0},
-        {0.5, -0.5, 0.0},
+        {0.5f, 0.5f, 0.0f},
+        {-0.5f, 0.5f, 0.0f},
+        {0.5f, -0.5f, 0.0f},
     });
 
     auto mesh = MC::Binder::load(quad);