diff options
author | Stijn Buys <ingar@osirion.org> | 2010-02-25 19:28:14 +0000 |
---|---|---|
committer | Stijn Buys <ingar@osirion.org> | 2010-02-25 19:28:14 +0000 |
commit | 90fbc4c5caf5afd54920894319448b74967399ba (patch) | |
tree | d4a8fe5ccdcbe94f4a3e5e1115f5baed26e8c2e3 /src/game | |
parent | 83757353860fa447c36d4078602efea36d7da94e (diff) |
added initial support for model sound tags,
moved sound code from client/targets.cc to client/soundext.cc,
added master volume cvar snd_volume
Diffstat (limited to 'src/game')
-rw-r--r-- | src/game/game.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/game.cc b/src/game/game.cc index 2a9ddad..b7c15db 100644 --- a/src/game/game.cc +++ b/src/game/game.cc @@ -17,11 +17,11 @@ void register_modules(bool register_noninteractive_modules) { con_print << "^BRegistering game modules..." << std::endl; - // non-interactive modules + // interactive modules core::Loader::add("base", game::factory); core::Loader::add("example", example::factory); - // interactive modules + // non-interactive modules if (register_noninteractive_modules) { core::Loader::add("intro", intro::factory); } |