Skip to content

Commit f9af011

Browse files
committed
Update core_window_letterbox.c
1 parent 79497e1 commit f9af011

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

examples/core/core_window_letterbox.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@
2727
//------------------------------------------------------------------------------------
2828
int main(void)
2929
{
30-
const int windowWidth = 800;
31-
const int windowHeight = 450;
30+
const int screenWidth = 800;
31+
const int screenHeight = 450;
3232

3333
// Enable config flags for resizable window and vertical synchro
3434
SetConfigFlags(FLAG_WINDOW_RESIZABLE | FLAG_VSYNC_HINT);
35-
InitWindow(windowWidth, windowHeight, "raylib [core] example - window scale letterbox");
35+
InitWindow(screenWidth, screenHeight, "raylib [core] example - window scale letterbox");
3636
SetWindowMinSize(320, 240);
3737

3838
int gameScreenWidth = 640;

0 commit comments

Comments
 (0)