Skip to content

Commit

Permalink
Merge pull request #21 from Wolfy76700/docs
Browse files Browse the repository at this point in the history
Various fixes
  • Loading branch information
Wolfy76700 authored Mar 20, 2024
2 parents a27c4b6 + 2d5ee66 commit 4c9332e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .utilities/generate_controller_tables.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ def bool_to_emoji(boolean: bool):

def str_to_emoji(string: str):
if string:
if string == "+":
return("➕")
if string == "-":
return("➖")
return(string)
else:
return("❌")
Expand Down Expand Up @@ -160,7 +164,7 @@ def process_list_string(list_str, title="Menu Buttons", level = 1):
"""
for button_name in list_str:
result += f"- {button_name}\n"
result += f"- {str_to_emoji(button_name)}\n"
result += "\n"
return(result)

Expand Down
2 changes: 1 addition & 1 deletion pad/hori/pokken/config.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "Pokken Tournament Pro Pad",
"name": "Pokkén Tournament Pro Pad",
"functions": {
"analog_sticks": null,
"digital_sticks": null,
Expand Down

0 comments on commit 4c9332e

Please sign in to comment.