From 77796c3c901f3a38e82593674b41387f70cc2b03 Mon Sep 17 00:00:00 2001
From: Sebastian Gaida <gaida@ca-digit.com>
Date: Mon, 3 May 2021 13:48:42 +0200
Subject: [PATCH] [#8] unify applicationName

---
 projects/first_triangle/src/main.cpp | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/projects/first_triangle/src/main.cpp b/projects/first_triangle/src/main.cpp
index ab70b7b7..179ae55b 100644
--- a/projects/first_triangle/src/main.cpp
+++ b/projects/first_triangle/src/main.cpp
@@ -5,16 +5,16 @@
 #include <vkcv/CoreManager.hpp>
 
 int main(int argc, const char** argv) {
-
+    const char* applicationName = "First Triangle";
     vkcv::initGLFW();
 	vkcv::Window window = vkcv::Window::create(
-		"first triangle",
+            applicationName,
         800,
         600,
 		false
 	);
 	vkcv::Context context = vkcv::Context::create(
-			"First Triangle",
+            applicationName,
 			VK_MAKE_VERSION(0, 0, 1)
 	);
 
-- 
GitLab