diff options
author | thilo <thilo@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2006-08-19 11:02:20 +0000 |
---|---|---|
committer | thilo <thilo@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2006-08-19 11:02:20 +0000 |
commit | 26c463829c60e871818d8e3347c9d6aa3e7274c8 (patch) | |
tree | 5d325d101004961f152a57cf18c759ff2adf29bc /code/qcommon | |
parent | 65326c8f5fc9e3780f68b7ec47c835cc09899c3c (diff) | |
download | ioquake3-aero-26c463829c60e871818d8e3347c9d6aa3e7274c8.tar.gz ioquake3-aero-26c463829c60e871818d8e3347c9d6aa3e7274c8.zip |
- Add device enumeration support on windows and make "Generic Software" new default device as that one seems to work more reliably on many platforms.
- Add shfolder.lib library to dependencies in MSVC project files
- update documentation for OpenAL changes.
git-svn-id: svn://svn.icculus.org/quake3/trunk@853 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code/qcommon')
-rw-r--r-- | code/qcommon/cvar.c | 9 | ||||
-rw-r--r-- | code/qcommon/qcommon.h | 1 |
2 files changed, 10 insertions, 0 deletions
diff --git a/code/qcommon/cvar.c b/code/qcommon/cvar.c index d9f9e71..e812a83 100644 --- a/code/qcommon/cvar.c +++ b/code/qcommon/cvar.c @@ -451,6 +451,15 @@ void Cvar_Reset( const char *var_name ) { Cvar_Set2( var_name, NULL, qfalse ); } +/* +============ +Cvar_ForceReset +============ +*/ +void Cvar_ForceReset(const char *var_name) +{ + Cvar_Set2(var_name, NULL, qtrue); +} /* ============ diff --git a/code/qcommon/qcommon.h b/code/qcommon/qcommon.h index 1069434..3c53ae0 100644 --- a/code/qcommon/qcommon.h +++ b/code/qcommon/qcommon.h @@ -487,6 +487,7 @@ void Cvar_CommandCompletion( void(*callback)(const char *s) ); // callback with each valid string void Cvar_Reset( const char *var_name ); +void Cvar_ForceReset(const char *var_name); void Cvar_SetCheatState( void ); // reset all testing vars to a safe value |