- Be slightly more tolerant in release mode

- Prepare for release 1.7
This commit is contained in:
Olivier Teulière 2008-09-25 20:39:37 +00:00
parent 320c006827
commit fa5d97f942
2 changed files with 3 additions and 1 deletions

View file

@ -3,7 +3,7 @@ dnl Process this file with autoconf to produce a configure script.
dnl --------------------------------------------------------------
dnl configure.in for Eliot
dnl --------------------------------------------------------------
AC_INIT(eliot, 1.7-cvs)
AC_INIT(eliot, 1.7)
AC_CONFIG_SRCDIR(qt/main.cpp)
AM_INIT_AUTOMAKE
AM_CONFIG_HEADER(config.h)

View file

@ -255,7 +255,9 @@ void Settings::setValue(const string &iName, T iValue)
}
catch (SettingNotFoundException &e)
{
#ifdef DEBUG
throw GameException("No such option: " + iName);
#endif
}
#endif
}