The --wiimote_plugin command-line option is no longer relevant.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6274 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
739c9eb2df
commit
f862ed4782
|
@ -27,7 +27,6 @@ Usage: Dolphin [-h] [-d] [-l] [-e <str>] [-V <str>] [-A <str>] [-P <str>] [-W <s
|
|||
-e, --exec=<str> Loads the specified file (DOL, ELF, WAD, GCM, ISO)
|
||||
-V, --video_plugin=<str> Specify a video plugin
|
||||
-A, --audio_plugin=<str> Specify an audio plugin
|
||||
-W, --wiimote_plugin=<str> Specify a wiimote plugin
|
||||
|
||||
[Libraries]
|
||||
Cg: Cg Shading API (http://developer.nvidia.com/object/cg_toolkit.html)
|
||||
|
@ -44,10 +43,6 @@ Plugin_VideoDX9: Render with Direct3D 9
|
|||
Plugin_VideoDX11: Render with Direct3D 11
|
||||
Plugin_VideoOGL: Render with OpenGL + Cg Shader Language
|
||||
|
||||
[Wiimote Plugins]
|
||||
Plugin_Wiimote: Use native wiimote or keyboard (legacy)
|
||||
Plugin_WiimoteNew: Use native wiimote or keyboard (incomplete)
|
||||
|
||||
[Sys Files]
|
||||
totaldb.dsy: Database of symbols (for devs only)
|
||||
font_ansi.bin/font_sjis.bin: font dumps
|
||||
|
|
|
@ -130,10 +130,6 @@ bool DolphinApp::OnInit()
|
|||
wxCMD_LINE_OPTION, "A", "audio_plugin","Specify an audio plugin",
|
||||
wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_OPTIONAL
|
||||
},
|
||||
{
|
||||
wxCMD_LINE_OPTION, "W", "wiimote_plugin","Specify a wiimote plugin",
|
||||
wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_OPTIONAL
|
||||
},
|
||||
{
|
||||
wxCMD_LINE_NONE
|
||||
}
|
||||
|
@ -167,10 +163,6 @@ bool DolphinApp::OnInit()
|
|||
wxCMD_LINE_OPTION, _("A"), _("audio_plugin"), wxT("Specify an audio plugin"),
|
||||
wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_OPTIONAL
|
||||
},
|
||||
{
|
||||
wxCMD_LINE_OPTION, _("W"), _("wiimote_plugin"), wxT("Specify a wiimote plugin"),
|
||||
wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_OPTIONAL
|
||||
},
|
||||
{
|
||||
wxCMD_LINE_NONE
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue