mirror of
https://github.com/PoshoDev/DexTool.git
synced 2026-04-22 16:37:34 -05:00
13 lines
209 B
Plaintext
13 lines
209 B
Plaintext
function show_dex_toggle() {
|
|
window_set_cursor(cr_hourglass);
|
|
|
|
if (++global.show_dex >= shw.LENGTH)
|
|
global.show_dex = 0;
|
|
|
|
savedata_write("Display", "Galar Dex", global.show_dex);
|
|
|
|
room_restart();
|
|
|
|
|
|
}
|