Skip to content

Commit 1273bf2

Browse files
committed
Fixed window name typo for chapter 2
1 parent 61add41 commit 1273bf2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Chapter02/Game.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ bool Game::Initialize()
3131
return false;
3232
}
3333

34-
mWindow = SDL_CreateWindow("Game Programming in C++ (Chapter 3)", 100, 100, 1024, 768, 0);
34+
mWindow = SDL_CreateWindow("Game Programming in C++ (Chapter 2)", 100, 100, 1024, 768, 0);
3535
if (!mWindow)
3636
{
3737
SDL_Log("Failed to create window: %s", SDL_GetError());

0 commit comments

Comments
 (0)