mirror of
git://git.savannah.nongnu.org/eliot.git
synced 2025-01-30 20:34:27 +01:00
- Be slightly more tolerant in release mode
- Prepare for release 1.7
This commit is contained in:
parent
320c006827
commit
fa5d97f942
2 changed files with 3 additions and 1 deletions
|
@ -3,7 +3,7 @@ dnl Process this file with autoconf to produce a configure script.
|
||||||
dnl --------------------------------------------------------------
|
dnl --------------------------------------------------------------
|
||||||
dnl configure.in for Eliot
|
dnl configure.in for Eliot
|
||||||
dnl --------------------------------------------------------------
|
dnl --------------------------------------------------------------
|
||||||
AC_INIT(eliot, 1.7-cvs)
|
AC_INIT(eliot, 1.7)
|
||||||
AC_CONFIG_SRCDIR(qt/main.cpp)
|
AC_CONFIG_SRCDIR(qt/main.cpp)
|
||||||
AM_INIT_AUTOMAKE
|
AM_INIT_AUTOMAKE
|
||||||
AM_CONFIG_HEADER(config.h)
|
AM_CONFIG_HEADER(config.h)
|
||||||
|
|
|
@ -255,7 +255,9 @@ void Settings::setValue(const string &iName, T iValue)
|
||||||
}
|
}
|
||||||
catch (SettingNotFoundException &e)
|
catch (SettingNotFoundException &e)
|
||||||
{
|
{
|
||||||
|
#ifdef DEBUG
|
||||||
throw GameException("No such option: " + iName);
|
throw GameException("No such option: " + iName);
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue