Linux/joyconfig: Display the preferred filename for the configuration

This commit is contained in:
Christoph "baka0815" Schwerdtfeger 2018-07-03 18:57:54 +02:00
parent f063856f8b
commit 1a729a1586
1 changed files with 2 additions and 1 deletions

View File

@ -298,7 +298,8 @@ if __name__ == "__main__":
mapping.write(f)
print("\nMapping file saved to: %s\n" % os.path.abspath(args.file))
else:
print("\nHere's your mapping file:\n")
print("\nHere's your mapping file:")
print("Save this as \"~/.local/share/reicast/mappings/%s.cfg\"\n" % mapping.get("emulator", "mapping_name"))
mapping.write(sys.stdout)
sys.exit(0)