(PS Libdbgfont) Refactor

This commit is contained in:
twinaphex 2015-04-26 05:46:56 +02:00
parent e52eb7bcf2
commit 747a58e253

View File

@ -15,7 +15,6 @@
*/ */
#include "../font_renderer_driver.h" #include "../font_renderer_driver.h"
#include "../drivers/gl_common.h"
#include "../font_driver.h" #include "../font_driver.h"
#if defined(SN_TARGET_PSP2) #if defined(SN_TARGET_PSP2)
@ -35,7 +34,7 @@
static void *libdbg_font_init_font(void *gl_data, const char *font_path, float font_size) static void *libdbg_font_init_font(void *gl_data, const char *font_path, float font_size)
{ {
gl_t *gl = (gl_t*)gl_data; global_t *global = global_get_ptr();
(void)font_path; (void)font_path;
(void)font_size; (void)font_size;
@ -45,8 +44,8 @@ static void *libdbg_font_init_font(void *gl_data, const char *font_path, float f
cfg.fontSize = SCE_DBGFONT_FONTSIZE_LARGE; cfg.fontSize = SCE_DBGFONT_FONTSIZE_LARGE;
#elif defined(__CELLOS_LV2__) #elif defined(__CELLOS_LV2__)
cfg.bufSize = SCE_DBGFONT_BUFSIZE_LARGE; cfg.bufSize = SCE_DBGFONT_BUFSIZE_LARGE;
cfg.screenWidth = gl->win_width; cfg.screenWidth = global->video_data.width;
cfg.screenHeight = gl->win_height; cfg.screenHeight = global->video_data.height;
#endif #endif
DbgFontInit(&cfg); DbgFontInit(&cfg);