BizHawkClient: Add suggestion when no handler is found (#3375)
This commit is contained in:
parent
f249c36f8b
commit
70d97a0eb4
|
@ -177,7 +177,8 @@ async def _game_watcher(ctx: BizHawkClientContext):
|
|||
|
||||
if ctx.client_handler is None:
|
||||
if not showed_no_handler_message:
|
||||
logger.info("No handler was found for this game")
|
||||
logger.info("No handler was found for this game. Double-check that the apworld is installed "
|
||||
"correctly and that you loaded the right ROM file.")
|
||||
showed_no_handler_message = True
|
||||
continue
|
||||
else:
|
||||
|
|
Loading…
Reference in New Issue