chore: update title bar

This commit is contained in:
Cat Flynn 2023-07-27 01:34:41 +02:00 committed by ktyl
parent 86e8775158
commit 319f1c4224
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.27)
project(HelloTriangle)
project(HelloAstro)
# Define platform-specific paths and libraries
if(WIN32)

View File

@ -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();