mirror of
https://github.com/PoshoDev/DexTool.git
synced 2026-03-22 01:34:11 -05:00
11 lines
207 B
Plaintext
11 lines
207 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();
|
|
}
|