mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-25 07:35:38 +00:00
Added trigger button support to the theme downloader screenshot viewer
This commit is contained in:
parent
610da5d771
commit
e8589cbc16
|
@ -1119,6 +1119,14 @@ bool GuiThemeDownloader::input(InputConfig* config, Input input)
|
|||
++mFullscreenViewerIndex;
|
||||
return true;
|
||||
}
|
||||
else if (config->isMappedLike("lefttrigger", input)) {
|
||||
mFullscreenViewerIndex = 0;
|
||||
return true;
|
||||
}
|
||||
else if (config->isMappedLike("righttrigger", input)) {
|
||||
mFullscreenViewerIndex = mViewerScreenshots.size() - 1;
|
||||
return true;
|
||||
}
|
||||
else {
|
||||
mViewerScreenshots.clear();
|
||||
mViewerCaptions.clear();
|
||||
|
|
Loading…
Reference in a new issue