Milan Nikolic

Results 375 comments of Milan Nikolic
trafficstars

What do you have in the config for AnalogDeadzone and AnalogPeak? Looks like some invalid value. Try to move/remove mupen64plus config.

Just install python-setuptools or python3-setuptools, or with `pip install setuptools`, etc.

Are you sure that going back to version 0.2.3 works? On same system, you are not running as root, same mupen64plus etc.? There is nothing special in 0.2.4, dbus in...

python2 vs python3 issue maybe? Check also version of dbus-python, I have no idea what else can be a issue. Try to start it as root, then it should print...

This is a part of code that use dbus on Linux to enable/disable screensaver https://github.com/mupen64plus/mupen64plus-ui-python/blob/master/src/m64py/screensaver.py#L24 . Nothing changed there for 2 years.

SDL2 internaly use dbus on Linux but doesn't link to libdbus, instead it loads libdbus-1.so.3 https://hg.libsdl.org/SDL/file/e854440318d2/src/core/linux/SDL_dbus.c , so you can check that.

And now, without SDL1, frontend can just call https://wiki.libsdl.org/SDL_DisableScreenSaver , no need for screensaver.py at all.

Doesn't look like exactly the same error. You have this ImportError: None: cannot open shared object file: No such file or directory

Can you try to comment in screensaver.py everything related to dbus? Just to confirm who is throwing that error, python-dbus or SDL2->dbus.

Ok, thanks. So if m64py doesn't touch dbus anymore then it must be SDL2 fault. Please also remove import dbus line, just to be sure. As I wrote above, SDL2...