mirror of
https://github.com/clangen/musikcube.git
synced 2025-01-16 22:13:19 +00:00
Fix string initialization issue in pdcdisp.c (WinGUI variant)
This commit is contained in:
parent
a42efaa97f
commit
47a2dc4055
@ -226,8 +226,8 @@ static LONG scale_font_for_current_dpi( LONG size)
|
||||
}
|
||||
|
||||
int PDC_font_size = -1;
|
||||
TCHAR PDC_font_name[128];
|
||||
TCHAR PDC_preferred_fontface[128]; /* can be set by application */
|
||||
TCHAR PDC_font_name[256] = _T("\0");
|
||||
TCHAR PDC_preferred_fontface[256] = _T("\0"); /* can be set by application */
|
||||
static TCHAR* PDC_default_font_name = _T("Courier New");
|
||||
|
||||
/* The calling application can override the default fontface with
|
||||
|
Loading…
Reference in New Issue
Block a user