2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-13 10:31:20 +00:00

Add drag-n-drop support for loading game ISO

This commit is contained in:
Phillip Stephens 2025-04-16 15:56:04 -07:00
parent f1ef7f5fd7
commit 394ed34673

View File

@ -239,6 +239,13 @@ public:
m_imGuiConsole.ToggleVisible();
m_lAltHeld = false;
}
break;
case SDL_EVENT_DROP_FILE: {
m_imGuiConsole.m_gameDiscSelected = event.drop.data;
break;
}
default:
break;
}
}