Brainstorm now compiles

This commit is contained in:
2022-06-23 07:34:51 +00:00
parent e6ca94c2df
commit 41b8632b32
7 changed files with 3570 additions and 45 deletions

View File

@@ -19,7 +19,7 @@ struct mSDLWindow *MakeSDLWindow(const char *name, int width, int height,
struct mSDLWindow *w = calloc(1, sizeof(struct mSDLWindow));
w->width = width;
w->height = height;
w->window = glfwCreateWindow(width, height, "New Game", NULL, NULL);
w->window = glfwCreateWindow(width, height, name, NULL, NULL);
if (!w->window) {
printf("Couldn't make GLFW window\n");