Skip to content

Commit

Permalink
feat(error msg): mention games that grab exclusive input
Browse files Browse the repository at this point in the history
Resolves #220
  • Loading branch information
Merrit committed Sep 25, 2024
1 parent 5797917 commit f32e45f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion lib/apps_list/widgets/nyrna_error_message.dart
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,11 @@ class NyrnaErrorMessage extends StatelessWidget {
data: '''
If this is a game, check if it uses `Easy Anti-Cheat` by searching for it at [pcgamingwiki.com](https://www.pcgamingwiki.com) and checking if the "Middleware" section lists Easy Anti-Cheat.
Due to the restricted and obfuscated nature of Easy Anti-Cheat Nyrna cannot manage titles that use this.''',
Due to the restricted and obfuscated nature of Easy Anti-Cheat Nyrna cannot manage titles that use this.
Also, some games grab exclusive control of the mouse and keyboard, which can cause Nyrna's shortcuts to not work. This is a limitation of the game, not Nyrna. Known examples:
- `Doom (2016)`''',
onTapLink: (String text, String? href, String title) {
if (href == null) return;
AppCubit.instance.launchURL(href);
Expand Down

0 comments on commit f32e45f

Please sign in to comment.