diff options
Diffstat (limited to 'src/osd/windows/debugwin.c')
| -rw-r--r-- | src/osd/windows/debugwin.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/osd/windows/debugwin.c b/src/osd/windows/debugwin.c index cef22ad28da..21b4caf2f28 100644 --- a/src/osd/windows/debugwin.c +++ b/src/osd/windows/debugwin.c @@ -393,13 +393,13 @@ void debugwin_init_windows(void) { int size = options_get_int(mame_options(), WINOPTION_DEBUGGER_FONT_SIZE); TCHAR *t_face; - + // create a standard font t_face = tstring_from_utf8(options_get_string(mame_options(), WINOPTION_DEBUGGER_FONT)); debug_font = CreateFont(-MulDiv(size, GetDeviceCaps(temp_dc, LOGPIXELSY), 72), 0, 0, 0, FW_MEDIUM, FALSE, FALSE, FALSE, ANSI_CHARSET, OUT_DEFAULT_PRECIS, CLIP_DEFAULT_PRECIS, DEFAULT_QUALITY, FF_DONTCARE, t_face); free(t_face); - + // fall back to Lucida Console 8 if (debug_font == NULL) { |
