Skip to content

Commit

Permalink
Misc updates
Browse files Browse the repository at this point in the history
  • Loading branch information
BernardoGiordano committed Oct 24, 2018
1 parent 93d580e commit d564bec
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions issue_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ Please fill the fields with all the informations important for the maintainers t

If you feel it's relevant, please attach screenshots or pictures that could detail the issue more.

**NOTICE**: The issue tracker is meant for bug reports and not for troubleshooting. Please reach us out on our [Discord server](https://discord.gg/bGKEyfY) to receive help. By sending this issue report to us, you're aware that your submission may be closed without notice if invalid.

* [x] Issue with Checkpoint for 3DS
* [ ] Issue with Checkpoint for Switch
* [ ] Feature request
Expand Down
4 changes: 2 additions & 2 deletions switch/source/gui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,12 @@ void Gui::entryType(entryType_t type_)

void Gui::createInfo(const std::string& title, const std::string& message)
{
info->init(title, message, 100, TYPE_INFO);
info->init(title, message, 300, TYPE_INFO);
}

void Gui::createError(Result res, const std::string& message)
{
info->init(res, message, 100, TYPE_ERROR);
info->init(res, message, 300, TYPE_ERROR);
}

size_t Gui::count(entryType_t type)
Expand Down

0 comments on commit d564bec

Please sign in to comment.