refactoring for Wiz port; random cleanups
[libpicofe.git] / common / config.c
index 961ac92..c5ff538 100644 (file)
@@ -110,7 +110,7 @@ static void keys_write(FILE *fn, const char *bind_str, int dev_id, const int *bi
        int key_count, t, i;
        const int *def_binds;
 
-       key_count = in_get_dev_bind_count(dev_id);
+       key_count = in_get_dev_info(dev_id, IN_INFO_BIND_COUNT);
        def_binds = in_get_dev_def_binds(dev_id);
 
        for (t = 0; t < key_count; t++)
@@ -311,7 +311,7 @@ next:
                sprintf(strbind, "bind%d", t);
                if (t == 0) strbind[4] = 0;
 
-               count = in_get_dev_bind_count(t);
+               count = in_get_dev_info(t, IN_INFO_BIND_COUNT);
                keys_write(fn, strbind, t, binds, no_defaults);
        }
 
@@ -538,6 +538,7 @@ static int custom_read(menu_entry *me, const char *var, const char *val)
                                return 0;
                        return 1;
 
+#if 0 // TODO rm?
                case MA_OPT_CPU_CLOCKS:
 #ifdef __GP2X__
                        if (strcasecmp(var, "GP2X CPU clocks") != 0) return 0;
@@ -546,6 +547,7 @@ static int custom_read(menu_entry *me, const char *var, const char *val)
 #endif
                        currentConfig.CPUclock = atoi(val);
                        return 1;
+#endif
 
                case MA_OPT2_GAMMA:
                        if (strcasecmp(var, "Gamma correction") != 0) return 0;