Celeste64
Celeste64 copied to clipboard
forget selected index in pause menu
resets the index of selected item in pause menu to 0 upon unpause. Makes pause -> retry more consistent
This is good, but can you unset it in the SetPaused method instead?
so:
if (!paused) pauseMenu.Index = 0;
I think that's more general purpose in case the pause menu gets closed through other means.
Thanks!