distribution/packages/emulators/standalone/mednafen/patches/0001-list-joysticks.patch
2023-11-18 14:45:28 +01:00

20 lines
628 B
Diff

diff --git a/src/drivers/main.cpp b/src/drivers/main.cpp
index a6f7db2..e69e4c4 100644
--- a/src/drivers/main.cpp
+++ b/src/drivers/main.cpp
@@ -1980,6 +1980,13 @@ __attribute__((force_align_arg_pointer)) // Not sure what's going on to cause th
#endif
int main(int argc, char *argv[])
{
+ if(argc == 2) {
+ const char* ljoy = "--list-joysticks";
+ size_t size = ljoy < argv[1] ? strlen(ljoy) : strlen(argv[1]);
+ if(!strncmp(ljoy, argv[1], size))
+ JoystickManager::Init();
+ return 0;
+ }
// SuppressErrorPopups must be set very early.
{
char* mnp = getenv("MEDNAFEN_NOPOPUPS");
--
2.39.2