(03-09-2018, 08:13 AM)jackeown Wrote: I read the CMakeLists.txt file and found the following line:
option(ENABLE_HEADLESS "Enables running Dolphin as a headless variant" OFF)
and I switched the "OFF" to "ON" and recompiled
The proper way is to modify the CMakeCache.txt file.
(03-09-2018, 08:46 AM)jackeown Wrote: That may be the case...I'm just confused by this code then: https://github.com/vladfi1/phillip/blob/0d2ccfe9dca1fb4ea8be1791f6ad157eed5bc196/phillip/dolphin.py
(This is code from another guy who made a bot for Super smash bros melee).
He has an executable called "dolphin-emu-headless" (or so it seems)
I found this:
Code:
if self.gui:
# switch from headless to gui
if self.exe.endswith("-headless"):
#self.exe = self.exe[:-9]
self.exe = self.exe[:-9] + "-nogui"It basically just replaces "-headless" with "-nogui". So it is effectively using "dolphin-emu-nogui"

