Skip to content

Commit eca5ff0

Browse files
authored
Fixed window title for chapter 8
1 parent 349eacc commit eca5ff0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Chapter08/Game.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ bool Game::Initialize()
5252
// Force OpenGL to use hardware acceleration
5353
SDL_GL_SetAttribute(SDL_GL_ACCELERATED_VISUAL, 1);
5454

55-
mWindow = SDL_CreateWindow("Game Programming in C++ (Chapter 5)", 100, 100,
55+
mWindow = SDL_CreateWindow("Game Programming in C++ (Chapter 8)", 100, 100,
5656
1024, 768, SDL_WINDOW_OPENGL);
5757
if (!mWindow)
5858
{

0 commit comments

Comments
 (0)