Skip to content

Commit

Permalink
Fix: Update main.cpp (#66)
Browse files Browse the repository at this point in the history
Changed window name from canary test.
  • Loading branch information
CHollingworth authored Nov 6, 2023
1 parent 2f3ee76 commit 7224e80
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ int main(int, char**)
#endif

SDL_WindowFlags window_flags = (SDL_WindowFlags)(SDL_WINDOW_RESIZABLE | SDL_WINDOW_ALLOW_HIGHDPI);
SDL_Window* window = SDL_CreateWindow("Lamp SDL Canary.", SDL_WINDOWPOS_CENTERED, SDL_WINDOWPOS_CENTERED, 1280, 720, window_flags);
SDL_Window* window = SDL_CreateWindow("Lamp", SDL_WINDOWPOS_CENTERED, SDL_WINDOWPOS_CENTERED, 1280, 720, window_flags);
SDL_Renderer* renderer = SDL_CreateRenderer(window, -1, SDL_RENDERER_PRESENTVSYNC | SDL_RENDERER_ACCELERATED);
if (renderer == nullptr)
{
Expand Down Expand Up @@ -168,4 +168,4 @@ int main(int, char**)
SDL_Quit();

return 0;
}
}

0 comments on commit 7224e80

Please sign in to comment.