Skip to content

Commit

Permalink
fixed WASD left/right; added new CDN entry sirikata.com/content
Browse files Browse the repository at this point in the history
  • Loading branch information
danx0r committed Aug 13, 2009
1 parent 1b124e0 commit b10337d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions cdn.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ cache=(

namelookup=(
meru:/// = (
0 = http://www.sirikata.com/content/names
2 = file:///./Staging/names.txt
1 = http://graphics.stanford.edu/~danielrh/dns/names/global
)
Expand All @@ -36,6 +37,7 @@ namelookup=(

download=(
mhash:/// = (
0 = http://www.sirikata.com/content/assets
1 = http://graphics.stanford.edu/~danielrh/uploadsystem/files/global
2 = file:///./Staging
)
Expand Down
4 changes: 2 additions & 2 deletions liboh/plugins/ogre/OgreSystemMouseHandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1194,8 +1194,8 @@ class OgreSystem::MouseHandler {
// Movement
mInputBinding.add(InputBindingEvent::Key(SDL_SCANCODE_W, Input::MOD_SHIFT), mInputResponses["moveForward"]);
mInputBinding.add(InputBindingEvent::Key(SDL_SCANCODE_S, Input::MOD_SHIFT), mInputResponses["moveBackward"]);
mInputBinding.add(InputBindingEvent::Key(SDL_SCANCODE_D, Input::MOD_SHIFT), mInputResponses["moveLeft"]);
mInputBinding.add(InputBindingEvent::Key(SDL_SCANCODE_A, Input::MOD_SHIFT), mInputResponses["moveRight"]);
mInputBinding.add(InputBindingEvent::Key(SDL_SCANCODE_D, Input::MOD_SHIFT), mInputResponses["moveRight"]);
mInputBinding.add(InputBindingEvent::Key(SDL_SCANCODE_A, Input::MOD_SHIFT), mInputResponses["moveLeft"]);
mInputBinding.add(InputBindingEvent::Key(SDL_SCANCODE_UP), mInputResponses["rotateXPos"]);
mInputBinding.add(InputBindingEvent::Key(SDL_SCANCODE_DOWN), mInputResponses["rotateXNeg"]);
mInputBinding.add(InputBindingEvent::Key(SDL_SCANCODE_LEFT), mInputResponses["stableRotatePos"]);
Expand Down

0 comments on commit b10337d

Please sign in to comment.