mirror of
https://github.com/nzp-team/quakespasm.git
synced 2024-11-10 06:32:03 +00:00
VITA: Properly display X/O on restart dialog
This commit is contained in:
parent
7afcffc7ce
commit
6f92348472
1 changed files with 15 additions and 0 deletions
|
@ -753,6 +753,19 @@ void M_Main_Key (int key)
|
|||
|
||||
qboolean wasInMenus;
|
||||
|
||||
#ifdef VITA
|
||||
|
||||
char *restartMessage [] =
|
||||
{
|
||||
|
||||
" Are you sure you want",
|
||||
" to restart this game? ", //msg:0
|
||||
" ",
|
||||
" X :Yes O : No "
|
||||
};
|
||||
|
||||
#else
|
||||
|
||||
char *restartMessage [] =
|
||||
{
|
||||
|
||||
|
@ -762,6 +775,8 @@ char *restartMessage [] =
|
|||
" A :Yes B : No "
|
||||
};
|
||||
|
||||
#endif // VITA
|
||||
|
||||
|
||||
void M_Menu_Restart_f (void)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue