Remove unused -bestRefresh option.
This commit is contained in:
parent
5a72c45d42
commit
1f416fba99
|
@ -180,7 +180,6 @@ int xf86Depth = -1;
|
||||||
rgb xf86Weight = {0, 0, 0};
|
rgb xf86Weight = {0, 0, 0};
|
||||||
Bool xf86FlipPixels = FALSE;
|
Bool xf86FlipPixels = FALSE;
|
||||||
Gamma xf86Gamma = {0.0, 0.0, 0.0};
|
Gamma xf86Gamma = {0.0, 0.0, 0.0};
|
||||||
Bool xf86BestRefresh = DEFAULT_BEST_REFRESH;
|
|
||||||
Bool xf86AllowMouseOpenFail = FALSE;
|
Bool xf86AllowMouseOpenFail = FALSE;
|
||||||
#ifdef XF86VIDMODE
|
#ifdef XF86VIDMODE
|
||||||
Bool xf86VidModeDisabled = FALSE;
|
Bool xf86VidModeDisabled = FALSE;
|
||||||
|
|
|
@ -1516,11 +1516,6 @@ ddxProcessArgument(int argc, char **argv, int i)
|
||||||
xf86AllowMouseOpenFail = TRUE;
|
xf86AllowMouseOpenFail = TRUE;
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
if (!strcmp(argv[i],"-bestRefresh"))
|
|
||||||
{
|
|
||||||
xf86BestRefresh = TRUE;
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
if (!strcmp(argv[i],"-ignoreABI"))
|
if (!strcmp(argv[i],"-ignoreABI"))
|
||||||
{
|
{
|
||||||
LoaderSetOptions(LDR_OPT_ABI_MISMATCH_NONFATAL);
|
LoaderSetOptions(LDR_OPT_ABI_MISMATCH_NONFATAL);
|
||||||
|
@ -1800,7 +1795,6 @@ ddxUseMsg()
|
||||||
ErrorF("-allowNonLocalXvidtune allow xvidtune to be run as a non-local client\n");
|
ErrorF("-allowNonLocalXvidtune allow xvidtune to be run as a non-local client\n");
|
||||||
#endif
|
#endif
|
||||||
ErrorF("-allowMouseOpenFail start server even if the mouse can't be initialized\n");
|
ErrorF("-allowMouseOpenFail start server even if the mouse can't be initialized\n");
|
||||||
ErrorF("-bestRefresh choose modes with the best refresh rate\n");
|
|
||||||
ErrorF("-ignoreABI make module ABI mismatches non-fatal\n");
|
ErrorF("-ignoreABI make module ABI mismatches non-fatal\n");
|
||||||
ErrorF("-isolateDevice bus_id restrict device resets to bus_id (PCI only)\n");
|
ErrorF("-isolateDevice bus_id restrict device resets to bus_id (PCI only)\n");
|
||||||
ErrorF("-version show the server version\n");
|
ErrorF("-version show the server version\n");
|
||||||
|
|
|
@ -70,7 +70,6 @@ extern int xf86Depth;
|
||||||
extern Pix24Flags xf86Pix24;
|
extern Pix24Flags xf86Pix24;
|
||||||
extern rgb xf86Weight;
|
extern rgb xf86Weight;
|
||||||
extern Bool xf86FlipPixels;
|
extern Bool xf86FlipPixels;
|
||||||
extern Bool xf86BestRefresh;
|
|
||||||
extern Gamma xf86Gamma;
|
extern Gamma xf86Gamma;
|
||||||
extern char *xf86ServerName;
|
extern char *xf86ServerName;
|
||||||
extern struct pci_slot_match xf86IsolateDevice;
|
extern struct pci_slot_match xf86IsolateDevice;
|
||||||
|
|
Loading…
Reference in New Issue