Exemplo n.º 1
0
        private static VideoConfig TryLoadRegistry()
        {
            RegistryKey key = Registry.CurrentUser.OpenSubKey("Software\\Yias\\SharpWoW\\Video");

            if (key == null)
            {
                return(null);
            }

            VideoConfig ret = new VideoConfig();

            ret.loadFromRegistry(key);
            return(ret);
        }
Exemplo n.º 2
0
        private static VideoConfig TryLoadRegistry()
        {
            RegistryKey key = Registry.CurrentUser.OpenSubKey("Software\\Yias\\SharpWoW\\Video");
            if (key == null)
                return null;

            VideoConfig ret = new VideoConfig();
            ret.loadFromRegistry(key);
            return ret;
        }