mirror of
https://github.com/nzp-team/quakespasm.git
synced 2024-11-10 06:32:03 +00:00
VITA/NX: Always reset to item 0 when flipping page
This commit is contained in:
parent
3c15d7d6e9
commit
2545fffde3
1 changed files with 2 additions and 0 deletions
|
@ -1726,8 +1726,10 @@ void M_Menu_Maps_Key (int key)
|
|||
M_Menu_SinglePlayer_f ();
|
||||
} else if (m_maps_cursor == 16) {
|
||||
current_custom_map_page--;
|
||||
m_map_cursor = 0;
|
||||
} else if (m_maps_cursor == 15) {
|
||||
current_custom_map_page++;
|
||||
m_map_cursor = 0;
|
||||
} else {
|
||||
if (sv.active)
|
||||
Cbuf_AddText ("disconnect\n");
|
||||
|
|
Loading…
Reference in a new issue