We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79497e1 commit f9af011Copy full SHA for f9af011
examples/core/core_window_letterbox.c
@@ -27,12 +27,12 @@
27
//------------------------------------------------------------------------------------
28
int main(void)
29
{
30
- const int windowWidth = 800;
31
- const int windowHeight = 450;
+ const int screenWidth = 800;
+ const int screenHeight = 450;
32
33
// Enable config flags for resizable window and vertical synchro
34
SetConfigFlags(FLAG_WINDOW_RESIZABLE | FLAG_VSYNC_HINT);
35
- InitWindow(windowWidth, windowHeight, "raylib [core] example - window scale letterbox");
+ InitWindow(screenWidth, screenHeight, "raylib [core] example - window scale letterbox");
36
SetWindowMinSize(320, 240);
37
38
int gameScreenWidth = 640;
0 commit comments