summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorRay <[email protected]>2020-02-20 13:46:49 +0100
committerRay <[email protected]>2020-02-20 13:46:49 +0100
commita8a21312e1ed5b938b1d95016e65d9f44c5e7b82 (patch)
treea99b6ca5e37804bc52f2cdc65c5cad9d4051c832 /src
parent42dad5df9584e83b22d3eeb6e6f158e7125040fa (diff)
downloadraylib-a8a21312e1ed5b938b1d95016e65d9f44c5e7b82.tar.gz
raylib-a8a21312e1ed5b938b1d95016e65d9f44c5e7b82.zip
Removed TABS
Diffstat (limited to 'src')
-rw-r--r--src/core.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core.c b/src/core.c
index c55f6274..1179ddcc 100644
--- a/src/core.c
+++ b/src/core.c
@@ -683,7 +683,7 @@ void InitWindow(int width, int height, const char *title)
// NOTE: External functions (defined in module: text)
LoadFontDefault();
Rectangle rec = GetFontDefault().recs[95];
- // NOTE: We setup a 1px padding on char rectangle to avoid pixel bleeding on MSAA filtering
+ // NOTE: We setup a 1px padding on char rectangle to avoid pixel bleeding on MSAA filtering
SetShapesTexture(GetFontDefault().texture, (Rectangle){ rec.x + 1, rec.y + 1, rec.width - 2, rec.height - 2 });
#endif
#if defined(PLATFORM_DESKTOP) && defined(SUPPORT_HIGH_DPI)
@@ -4161,7 +4161,7 @@ static void AndroidCommandCallback(struct android_app *app, int32_t cmd)
// NOTE: External function (defined in module: text)
LoadFontDefault();
Rectangle rec = GetFontDefault().recs[95];
- // NOTE: We setup a 1px padding on char rectangle to avoid pixel bleeding on MSAA filtering
+ // NOTE: We setup a 1px padding on char rectangle to avoid pixel bleeding on MSAA filtering
SetShapesTexture(GetFontDefault().texture, (Rectangle){ rec.x + 1, rec.y + 1, rec.width - 2, rec.height - 2 });
#endif