From c02983bb9aac5283bbc0ca10f8a7e9344591efeb Mon Sep 17 00:00:00 2001 From: twinaphex Date: Tue, 14 Jul 2015 15:46:01 +0200 Subject: [PATCH] (PS3) Don't bake in HAVE_LIDBGFONT either --- Makefile.ps3 | 4 ++-- config.def.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile.ps3 b/Makefile.ps3 index 833bbe653b..bf67a954e0 100644 --- a/Makefile.ps3 +++ b/Makefile.ps3 @@ -81,8 +81,8 @@ ifeq ($(HAVE_FREETYPE), 1) DEFINES += -DHAVE_FREETYPE FONT_LIBS := -lfontFT_stub -lfreetype_stub else -DEFINES += -DHAVE_LIBDBGFONT -FONT_LIBS := -ldbgfont +#DEFINES += -DHAVE_LIBDBGFONT +#FONT_LIBS := -ldbgfont endif ifeq ($(CELL_BUILD_TOOLS), SNC) diff --git a/config.def.h b/config.def.h index 713d2221f4..81c3b26498 100644 --- a/config.def.h +++ b/config.def.h @@ -538,7 +538,7 @@ static bool back_as_menu_toggle_enable = true; static const bool crop_overscan = true; /* Font size for on-screen messages. */ -#if defined(HAVE_RMENU) +#if defined(HAVE_LIBDBGFONT) static const float font_size = 1.0f; #else static const float font_size = 32; @@ -547,7 +547,7 @@ static const float font_size = 32; /* Offset for where messages will be placed on-screen. * Values are in range [0.0, 1.0]. */ static const float message_pos_offset_x = 0.05; -#ifdef RARCH_CONSOLE +#if defined(_XBOX1) static const float message_pos_offset_y = 0.90; #else static const float message_pos_offset_y = 0.05;