This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ;; | |
| ;; Supermodel Configuration File | |
| ;; Default settings. | |
| ;; | |
| ;; 3/26/2025 (udance4ever): update to default setting so DualSense works in macOS | |
| ;; tested with 2020 M1 MacBookPro 16GB 1TB running macOS Sequoia 15.3.2 | |
| ;; | |
| ;; believe RetroBat in-line comments refer to these bindings that work for DualSense in Windows: | |
| ;; https://wiki.retrobat.org/systems-and-emulators/supported-game-systems/arcade/sega/sega-model-3 | |
| ;; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| import argparse | |
| import os | |
| import atexit | |
| import platform | |
| import re | |
| # boolean: https://stackoverflow.com/a/52403318/9983389 | |
| parser = argparse.ArgumentParser() |