-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Non-rpi Linux? #1
Comments
There is no hard dependency on Raspberry PI in the game logic but you must specify the device file of the input device as sole argument and it must support certain events. But here you are getting a permission denied, so I think there's still something else at play... EDIT: Also, you will have to find an alternative for the display which is now hardcoded to be the unicorn hat hd. |
Ok, thanks. Will let you know if I happen to find something. |
Yes, the display seems to be the problem now. UnicornHatHd::default() on line 67 of unicornhd.rs unwraps on an err value: thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: Error { repr: Os { code: 2, message: "No such file or directory" } } But I wouldn't know how to fix this ... |
The easy workaround is to uncomment the bottom lines in Cargo.toml. It will 'fake' the unicorn hat hd. |
Does this also work on non-rpi Linux? I just tried it on Debian, and I got:
But maybe this has to do with the controller used? (I don't have a SNES one, so I tried a steam controller and keyboard ...)
The text was updated successfully, but these errors were encountered: