From 02c1aab3f35a6b46103eb18c9bc2ddd536b4d988 Mon Sep 17 00:00:00 2001 From: LiquidFenrir Date: Mon, 2 Apr 2018 13:42:00 +0200 Subject: [PATCH] add warning for people using *hax entrypoints --- source/main.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/source/main.c b/source/main.c index 68983c7..506e66c 100644 --- a/source/main.c +++ b/source/main.c @@ -392,12 +392,15 @@ int main(void) } else { - throw_error("Please connect to Wi-Fi before scanning QRs", ERROR_LEVEL_WARNING); + throw_error("Please connect to Wi-Fi before scanning QR codes", ERROR_LEVEL_WARNING); } } else { - throw_error("Your camera seems to have a problem, unable to scan QRs.", ERROR_LEVEL_WARNING); + if(homebrew) + throw_error("QR scanning doesnt work from the Homebrew\nLauncher, use the ThemePlaza browser instead.", ERROR_LEVEL_WARNING); + else + throw_error("Your camera seems to have a problem,\nunable to scan QR codes.", ERROR_LEVEL_WARNING); } continue;