+1 vote
by (190 points)
The "delete all" button in save menu is really useful. But it's really dangerous cause it doesn't display any dialog that let the player to confirm. I'm planning to make an Android app, so if the user accidentally clicks the button on the screen he loses all the saves. There's any way to show a dialog?

1 Answer

0 votes
by (960 points)

I don't know about adding a confirmation dialogue, but you can disable the button using CSS.

#saves-clear {
    display: none;
}

 

...