From 319f1c4224192683e7151c0eca0cb6396925d88f Mon Sep 17 00:00:00 2001 From: Cat Flynn Date: Thu, 27 Jul 2023 01:34:41 +0200 Subject: [PATCH] chore: update title bar --- CMakeLists.txt | 2 +- hello.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 2dc2433..4ccef3b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.27) -project(HelloTriangle) +project(HelloAstro) # Define platform-specific paths and libraries if(WIN32) diff --git a/hello.cpp b/hello.cpp index c61a802..65e135a 100644 --- a/hello.cpp +++ b/hello.cpp @@ -109,7 +109,7 @@ int main() if (!glfwInit()) return -1; - GLFWwindow* window = glfwCreateWindow(640, 480, "Hello Triangle", NULL, NULL); + GLFWwindow* window = glfwCreateWindow(640, 480, "Hello Astro", NULL, NULL); if (!window) { glfwTerminate();