Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions source/guis/gui_main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -239,6 +239,11 @@ void GuiMain::onInput(u32 kdown) {
}

if (kdown & KEY_A) {
AppletType at = appletGetAppletType();
if (at != AppletType_Application && at != AppletType_SystemApplication) {
(new Snackbar("Edizon need to be ran with full ram access to process save files."))->show();
return;
}
if (m_selected.titleId == Title::g_activeTitle) {
(new Snackbar("The save files of a running game cannot be accessed."))->show();
return;
Expand Down