Skip to content

Commit

Permalink
fix: Poison type recipes were not listed in menu (recipes existed)
Browse files Browse the repository at this point in the history
  • Loading branch information
Insektaure committed Sep 20, 2024
1 parent 21318fd commit 0141a40
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ include $(DEVKITPRO)/libnx/switch_rules
# NACP building is skipped as well.
#---------------------------------------------------------------------------------
APP_TITLE := pkDwich
APP_VERSION := 1.0.2
APP_VERSION := 1.0.3

TARGET := $(notdir $(CURDIR))
BUILD := build
Expand Down
2 changes: 1 addition & 1 deletion source/views/main-view.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class pkDwich : public tsl::Gui {

virtual tsl::elm::Element* createUI() override {

auto frame = new tsl::elm::OverlayFrame("pkDwich", "v1.0.2");
auto frame = new tsl::elm::OverlayFrame("pkDwich", "v1.0.3");
auto list = new tsl::elm::List();

list->addItem(new tsl::elm::CategoryHeader("Recipes"));
Expand Down
1 change: 1 addition & 0 deletions source/views/sv/monotypeAlt-view.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ class MonotypeAltView : public tsl::Gui {
list->addItem(new RecipeViewButton("Electric", "Electric", ElectricAlt));
list->addItem(new RecipeViewButton("Fairy", "Fairy", Fairy));
list->addItem(new RecipeViewButton("Fighting", "Fighting", FightingAlt));
list->addItem(new RecipeViewButton("Poison", "Poison", PoisonAlt));
list->addItem(new RecipeViewButton("Fire", "Fire", FireAlt));
list->addItem(new RecipeViewButton("Flying", "Flying", FlyingAlt));
list->addItem(new RecipeViewButton("Ghost", "Ghost", GhostAlt));
Expand Down
1 change: 1 addition & 0 deletions source/views/sv/monotypeSalty-view.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ class MonotypeView : public tsl::Gui {
list->addItem(new RecipeViewButton("Electric", "Electric", Electric));
list->addItem(new RecipeViewButton("Fairy", "Fairy", Fairy));
list->addItem(new RecipeViewButton("Fighting", "Fighting", Fighting));
list->addItem(new RecipeViewButton("Poison", "Poison", Poison));
list->addItem(new RecipeViewButton("Fire", "Fire", Fire));
list->addItem(new RecipeViewButton("Flying", "Flying", Flying));
list->addItem(new RecipeViewButton("Ghost", "Ghost", Ghost));
Expand Down

0 comments on commit 0141a40

Please sign in to comment.