Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

libs: libnx: nxfonts: Fix prefix of generated fonts data #4057

Merged
merged 1 commit into from Jul 4, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
18 changes: 9 additions & 9 deletions libs/libnx/nxfonts/Makefile.sources
Expand Up @@ -207,12 +207,12 @@ GEN_CSRC = nxfonts_bitmaps_x11-misc-fixed-6x13.c
endif

ifeq ($(NXFONTS_FONTID),28)
NXFONTS_PREFIX := g_x11_misc_fixed_6x13B_
NXFONTS_PREFIX := g_x11_misc_fixed_6x13b_
GEN_CSRC = nxfonts_bitmaps_x11-misc-fixed-6x13b.c
endif

ifeq ($(NXFONTS_FONTID),29)
NXFONTS_PREFIX := g_x11_misc_fixed_6x13O_
NXFONTS_PREFIX := g_x11_misc_fixed_6x13o_
GEN_CSRC = nxfonts_bitmaps_x11-misc-fixed-6x13o.c
endif

Expand All @@ -222,12 +222,12 @@ GEN_CSRC = nxfonts_bitmaps_x11-misc-fixed-7x13.c
endif

ifeq ($(NXFONTS_FONTID),31)
NXFONTS_PREFIX := g_x11_misc_fixed_7x13B_
NXFONTS_PREFIX := g_x11_misc_fixed_7x13b_
GEN_CSRC = nxfonts_bitmaps_x11-misc-fixed-7x13b.c
endif

ifeq ($(NXFONTS_FONTID),32)
NXFONTS_PREFIX := g_x11_misc_fixed_7x13O_
NXFONTS_PREFIX := g_x11_misc_fixed_7x13o_
GEN_CSRC = nxfonts_bitmaps_x11-misc-fixed-7x13o.c
endif

Expand All @@ -237,7 +237,7 @@ GEN_CSRC = nxfonts_bitmaps_x11-misc-fixed-7x14.c
endif

ifeq ($(NXFONTS_FONTID),34)
NXFONTS_PREFIX := g_x11_misc_fixed_7x14B_
NXFONTS_PREFIX := g_x11_misc_fixed_7x14b_
GEN_CSRC = nxfonts_bitmaps_x11-misc-fixed-7x14b.c
endif

Expand All @@ -247,12 +247,12 @@ GEN_CSRC = nxfonts_bitmaps_x11-misc-fixed-8x13.c
endif

ifeq ($(NXFONTS_FONTID),36)
NXFONTS_PREFIX := g_x11_misc_fixed_8x13B_
NXFONTS_PREFIX := g_x11_misc_fixed_8x13b_
GEN_CSRC = nxfonts_bitmaps_x11-misc-fixed-8x13b.c
endif

ifeq ($(NXFONTS_FONTID),37)
NXFONTS_PREFIX := g_x11_misc_fixed_8x13O_
NXFONTS_PREFIX := g_x11_misc_fixed_8x13o_
GEN_CSRC = nxfonts_bitmaps_x11-misc-fixed-8x13o.c
endif

Expand All @@ -262,7 +262,7 @@ GEN_CSRC = nxfonts_bitmaps_x11-misc-fixed-9x15.c
endif

ifeq ($(NXFONTS_FONTID),39)
NXFONTS_PREFIX := g_x11_misc_fixed_9x15B_
NXFONTS_PREFIX := g_x11_misc_fixed_9x15b_
GEN_CSRC = nxfonts_bitmaps_x11-misc-fixed-9x15b.c
endif

Expand All @@ -272,7 +272,7 @@ GEN_CSRC = nxfonts_bitmaps_x11-misc-fixed-9x18.c
endif

ifeq ($(NXFONTS_FONTID),41)
NXFONTS_PREFIX := g_x11_misc_fixed_9x18B_
NXFONTS_PREFIX := g_x11_misc_fixed_9x18b_
GEN_CSRC = nxfonts_bitmaps_x11-misc-fixed-9x18b.c
endif

Expand Down