Menu Disappears
I've got this (credits to mmbob):
EDIT: Got it. Done without "void".
Code:
void ReFont(LPDIRECT3DDEVICE9 pDevice)
{
if (g_pDevice != pDevice)
{
g_pDevice = pDevice;
try
{
if (Directx.pFont != 0)
Directx.pFont->Release();
} catch (...) {}
Directx.pFont = 0;
D3DXCreateFontA(Here is the font options, but doesn't matter...);
}
}

