From cf76d234769be4773230fc1674acee837525ad40 Mon Sep 17 00:00:00 2001 From: Ray Date: Sat, 10 Sep 2022 10:23:38 +0200 Subject: [PATCH] Minor format tweaks --- examples/text/text_codepoints_loading.c | 1 - examples/text/text_unicode.c | 7 ++++--- examples/textures/textures_draw_tiled.c | 3 ++- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/examples/text/text_codepoints_loading.c b/examples/text/text_codepoints_loading.c index 921b0e75..3b6e1160 100644 --- a/examples/text/text_codepoints_loading.c +++ b/examples/text/text_codepoints_loading.c @@ -24,7 +24,6 @@ static char *text = "いろはにほへと ちりぬるを\nわかよたれそ // Remove codepoint duplicates if requested static int *CodepointRemoveDuplicates(int *codepoints, int codepointCount, int *codepointResultCount); - //------------------------------------------------------------------------------------ // Program main entry point //------------------------------------------------------------------------------------ diff --git a/examples/text/text_unicode.c b/examples/text/text_unicode.c index fb6fec87..4af54265 100644 --- a/examples/text/text_unicode.c +++ b/examples/text/text_unicode.c @@ -153,7 +153,7 @@ static int hovered = -1, selected = -1; //------------------------------------------------------------------------------------ // Program main entry point //------------------------------------------------------------------------------------ -int main(int argc, char **argv) +int main(void) { // Initialization //-------------------------------------------------------------------------------------- @@ -267,6 +267,7 @@ int main(int argc, char **argv) a = b; b = tmp; } + if (msgRect.x + msgRect.width > screenWidth) msgRect.x -= (msgRect.x + msgRect.width) - screenWidth + 10; // Draw chat bubble @@ -286,11 +287,11 @@ int main(int argc, char **argv) DrawText(info, (int)pos.x, (int)pos.y, 10, RAYWHITE); } //------------------------------------------------------------------------------ - + // Draw the info text DrawText("These emojis have something to tell you, click each to find out!", (screenWidth - 650)/2, screenHeight - 40, 20, GRAY); DrawText("Each emoji is a unicode character from a font, not a texture... Press [SPACEBAR] to refresh", (screenWidth - 484)/2, screenHeight - 16, 10, GRAY); - + EndDrawing(); //---------------------------------------------------------------------------------- } diff --git a/examples/textures/textures_draw_tiled.c b/examples/textures/textures_draw_tiled.c index 517fabc2..908bf238 100644 --- a/examples/textures/textures_draw_tiled.c +++ b/examples/textures/textures_draw_tiled.c @@ -12,6 +12,7 @@ * Copyright (c) 2020-2022 Vlad Adrian (@demizdor) and Ramon Santamaria (@raysan5) * ********************************************************************************************/ + #include "raylib.h" #define SIZEOF(A) (sizeof(A)/sizeof(A[0])) @@ -22,7 +23,7 @@ //------------------------------------------------------------------------------------ // Program main entry point //------------------------------------------------------------------------------------ -int main(int argc, char **argv) +int main(void) { // Initialization //--------------------------------------------------------------------------------------