(02-14-2018, 06:54 AM)retroben Wrote: Sorry for double post,but I am running into a warning of "The specified file "bug" does not exist" when using a shortcut file renamed "Dolphin Debug" locally in the same folder as Dolphin itself and appending -debug on the end of it like I have for the older build which is pinned to the taskbar.
I don't think it should require being pinned to the taksbar in order to work without this warning.
To note,the debugger still works after this warning is closed,so the real question is how do I prevent this warning?
I think you want either just '-d' or '--debugger'
-debug is being interpreted as:
-d -e bug
so it's enabling the debugger, then trying to execute "bug"
(generally, the way GNU-style command line arguments work is a single dash means "one or more single character options follow", while a double-dash means "a single multi-character option follows")
