diff options
| author | Ray <[email protected]> | 2020-12-19 19:27:31 +0100 |
|---|---|---|
| committer | Ray <[email protected]> | 2020-12-19 19:27:31 +0100 |
| commit | 2374281204be800de71484bd8712e9f098f7fc44 (patch) | |
| tree | a70ae3b994f5ab079a05dbea315597e8e2fb3901 /src/core.c | |
| parent | 015e715278ab9c4abce722bbee705a1b0f788ca2 (diff) | |
| download | raylib-2374281204be800de71484bd8712e9f098f7fc44.tar.gz raylib-2374281204be800de71484bd8712e9f098f7fc44.zip | |
Avoid *Rec suffix in some variables
Pefixing/Suffixing some data type identifier in the variables is not a convention used in raylib, just reviewed it for consistency...
Still, I kept the *Rec suffix in some functions.
Diffstat (limited to 'src/core.c')
| -rw-r--r-- | src/core.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3890,7 +3890,7 @@ static bool InitGraphicsDevice(int width, int height) srcRect.width = CORE.Window.render.width << 16; srcRect.height = CORE.Window.render.height << 16; - // NOTE: RPI dispmanx windowing system takes care of srcRec scaling to dstRec by hardware (no cost) + // NOTE: RPI dispmanx windowing system takes care of source rectangle scaling to destination rectangle by hardware (no cost) // Take care that renderWidth/renderHeight fit on displayWidth/displayHeight aspect ratio VC_DISPMANX_ALPHA_T alpha; |
