Use existing function VideoGetAppWindowTitle().

Signed-off-by: Andrea Odetti <mariofutire@gmail.com>
This commit is contained in:
Andrea Odetti 2020-11-27 18:55:07 +00:00
parent 8e6fc89384
commit 9fabc71464
2 changed files with 1 additions and 2 deletions

View file

@ -20,7 +20,6 @@
};
extern TCHAR g_aVideoChoices[];
extern const char *g_apVideoModeDesc[ NUM_VIDEO_MODES ];
enum VideoStyle_e
{

View file

@ -30,7 +30,7 @@ void SetWindowTitle()
{
g_pAppTitle += " 50% ";
}
g_pAppTitle += g_apVideoModeDesc[ g_eVideoType ];
g_pAppTitle += VideoGetAppWindowTitle();
}
void CheckCpu()