Revert "config.c: bump up the CONF_VER to 2 because I just added a new configuration for tab_zoom."

I will fix this in a correct way.

This reverts commit 19491ac0bb.
This commit is contained in:
Daniel Juyung Seo 2013-05-03 22:08:02 +09:00
parent 19491ac0bb
commit 742c4a71af
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@
#include "config.h"
#include "main.h"
#define CONF_VER 2
#define CONF_VER 1
#define LIM(v, min, max) {if (v >= max) v = max; else if (v <= min) v = min;}