Skip to content

Commit cadd28e

Browse files
committed
REXM: RENAME: example: text_raylib_fonts -> text_sprite_fonts
1 parent 2cb387b commit cadd28e

File tree

8 files changed

+574
-574
lines changed

8 files changed

+574
-574
lines changed

examples/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -596,7 +596,7 @@ TEXT = \
596596
text/text_font_spritefont \
597597
text/text_format_text \
598598
text/text_input_box \
599-
text/text_raylib_fonts \
599+
text/text_sprite_fonts \
600600
text/text_rectangle_bounds \
601601
text/text_unicode_emojis \
602602
text/text_unicode_ranges \

examples/Makefile.Web

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -596,7 +596,7 @@ TEXT = \
596596
text/text_font_spritefont \
597597
text/text_format_text \
598598
text/text_input_box \
599-
text/text_raylib_fonts \
599+
text/text_sprite_fonts \
600600
text/text_rectangle_bounds \
601601
text/text_unicode_emojis \
602602
text/text_unicode_ranges \
@@ -998,7 +998,7 @@ text/text_format_text: text/text_format_text.c
998998
text/text_input_box: text/text_input_box.c
999999
$(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM)
10001000

1001-
text/text_raylib_fonts: text/text_raylib_fonts.c
1001+
text/text_sprite_fonts: text/text_sprite_fonts.c
10021002
$(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM) \
10031003
--preload-file text/resources/sprite_fonts/alagard.png@resources/sprite_fonts/alagard.png \
10041004
--preload-file text/resources/sprite_fonts/pixelplay.png@resources/sprite_fonts/pixelplay.png \

examples/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ Examples using raylib text functionality, including sprite fonts loading/generat
128128

129129
| example | image | difficulty<br>level | version<br>created | last version<br>updated | original<br>developer |
130130
|-----------|--------|:-------------------:|:------------------:|:-----------------------:|:----------------------|
131-
| [text_raylib_fonts](text/text_raylib_fonts.c) | <img src="text/text_raylib_fonts.png" alt="text_raylib_fonts" width="80"> | ⭐☆☆☆ | 1.7 | 3.7 | [Ramon Santamaria](https://github.com/raysan5) |
131+
| [text_sprite_fonts](text/text_sprite_fonts.c) | <img src="text/text_sprite_fonts.png" alt="text_sprite_fonts" width="80"> | ⭐☆☆☆ | 1.7 | 3.7 | [Ramon Santamaria](https://github.com/raysan5) |
132132
| [text_font_spritefont](text/text_font_spritefont.c) | <img src="text/text_font_spritefont.png" alt="text_font_spritefont" width="80"> | ⭐☆☆☆ | 1.0 | 1.0 | [Ramon Santamaria](https://github.com/raysan5) |
133133
| [text_font_filters](text/text_font_filters.c) | <img src="text/text_font_filters.png" alt="text_font_filters" width="80"> | ⭐⭐☆☆ | 1.3 | 4.2 | [Ramon Santamaria](https://github.com/raysan5) |
134134
| [text_font_loading](text/text_font_loading.c) | <img src="text/text_font_loading.png" alt="text_font_loading" width="80"> | ⭐☆☆☆ | 1.4 | 3.0 | [Ramon Santamaria](https://github.com/raysan5) |

examples/examples_list.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ textures;textures_image_kernel;⭐️⭐️⭐️⭐️;1.3;1.3;"Karim Salem";@k
9090
textures;textures_image_channel;⭐️⭐️☆☆;5.1-dev;5.1-dev;"Bruno Cabral";@brccabral
9191
textures;textures_image_rotate;⭐️⭐️☆☆;1.0;1.0;"Ramon Santamaria";@raysan5
9292
textures;textures_textured_curve;⭐️⭐️⭐️☆;4.5;4.5;"Jeffery Myers";@JeffM2501
93-
text;text_raylib_fonts;⭐️☆☆☆;1.7;3.7;"Ramon Santamaria";@raysan5
93+
text;text_sprite_fonts;⭐️☆☆☆;1.7;3.7;"Ramon Santamaria";@raysan5
9494
text;text_font_spritefont;⭐️☆☆☆;1.0;1.0;"Ramon Santamaria";@raysan5
9595
text;text_font_filters;⭐️⭐️☆☆;1.3;4.2;"Ramon Santamaria";@raysan5
9696
text;text_font_loading;⭐️☆☆☆;1.4;3.0;"Ramon Santamaria";@raysan5
File renamed without changes.
File renamed without changes.

projects/VS2022/examples/text_raylib_fonts.vcxproj renamed to projects/VS2022/examples/text_sprite_fonts.vcxproj

Lines changed: 568 additions & 568 deletions
Large diffs are not rendered by default.

projects/VS2022/raylib.sln

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "text_unicode_emojis", "exam
155155
EndProject
156156
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "text_rectangle_bounds", "examples\text_rectangle_bounds.vcxproj", "{25BCB876-B60A-499B-9046-E9801CFD7780}"
157157
EndProject
158-
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "text_raylib_fonts", "examples\text_raylib_fonts.vcxproj", "{56FB0A45-145F-4EAE-B2C8-E5833E682D8F}"
158+
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "text_sprite_fonts", "examples\text_sprite_fonts.vcxproj", "{56FB0A45-145F-4EAE-B2C8-E5833E682D8F}"
159159
EndProject
160160
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "text_input_box", "examples\text_input_box.vcxproj", "{2BB0C1D4-9298-45AC-B244-67A99769A292}"
161161
EndProject

0 commit comments

Comments
 (0)