Skip to content

Commit 830a40e

Browse files
committed
Enable LGPE programs.
1 parent 4036f36 commit 830a40e

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

SerialPrograms/Source/CommonFramework/Globals.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ namespace PokemonAutomation{
2525
const bool IS_BETA_VERSION = true;
2626
const int PROGRAM_VERSION_MAJOR = 0;
2727
const int PROGRAM_VERSION_MINOR = 52;
28-
const int PROGRAM_VERSION_PATCH = 2;
28+
const int PROGRAM_VERSION_PATCH = 3;
2929

3030
const std::string PROGRAM_VERSION_BASE =
3131
"v" + std::to_string(PROGRAM_VERSION_MAJOR) +

SerialPrograms/Source/PanelLists.cpp

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
*
55
*/
66

7-
#include <array>
87
#include <QStandardItemModel>
98
#include <QVBoxLayout>
109
#include <QLabel>
@@ -46,9 +45,7 @@ ProgramSelect::ProgramSelect(QWidget& parent, PanelHolder& holder)
4645

4746
add(std::make_unique<NintendoSwitch::PanelListFactory>());
4847
add(std::make_unique<NintendoSwitch::PokemonHome::PanelListFactory>());
49-
if (PreloadSettings::instance().DEVELOPER_MODE){
50-
add(std::make_unique<NintendoSwitch::PokemonLGPE::PanelListFactory>());
51-
}
48+
add(std::make_unique<NintendoSwitch::PokemonLGPE::PanelListFactory>());
5249
add(std::make_unique<NintendoSwitch::PokemonSwSh::PanelListFactory>());
5350
add(std::make_unique<NintendoSwitch::PokemonBDSP::PanelListFactory>());
5451
add(std::make_unique<NintendoSwitch::PokemonLA::PanelListFactory>());

0 commit comments

Comments
 (0)