Merge remote branch 'upstream/master'

This commit is contained in:
xalduin 2010-06-02 15:21:31 -04:00
commit cc181cda5b
3 changed files with 24 additions and 12 deletions

View file

@ -23,7 +23,7 @@ Are you sure that you want to quit?
== Você tem certeza que deseja sair? == Você tem certeza que deseja sair?
As this is the first time you have launched the game, please enter your nickname below. It is recommended that you check your settings so you adjust them to your preferences before joining a server. As this is the first time you have launched the game, please enter your nickname below. It is recommended that you check your settings so you adjust them to your preferences before joining a server.
== Como esta é a primeira vez que você abriu o jogo, por favor, entre com seu apelido abaixo. É recomendado que você cheque suas configurações e então ajuste elaspara suas preferências antes de entrar em um servidor. == Como esta é a primeira vez que você abriu o jogo, por favor, entre com seu apelido abaixo. É recomendado que você cheque suas configurações e então ajuste elas para suas preferências antes de entrar em um servidor.
Blue team Blue team
== Time azul == Time azul
@ -113,7 +113,7 @@ Fire
== Atirar == Atirar
Force vote Force vote
== Forçar votação == Forçar
Fullscreen Fullscreen
== Tela cheia == Tela cheia
@ -167,13 +167,13 @@ Internet
== Internet == Internet
Join blue Join blue
== Entre no az. == Azul
Join game Join game
== Entre no jogo == Entre no jogo
Join red Join red
== Entre no verm. == Vermelho
Jump Jump
== Pular == Pular
@ -218,7 +218,7 @@ Movement
== Movimento == Movimento
Mute when not active Mute when not active
== Silenciar quando não ativo == Silenciar quando inativo
Name Name
== Nome == Nome
@ -260,13 +260,13 @@ Pistol
== Pistola == Pistola
Play Play
== Jogar == Assistir
Player Player
== Jogador == Jogador
Players Players
== Jogador == Jogadores
Prev. weapon Prev. weapon
== Arma anterior == Arma anterior
@ -320,7 +320,7 @@ Score board
== Placar == Placar
Score limit Score limit
== Pontuação máxima == Placar máx.
Scoreboard Scoreboard
== Placar == Placar
@ -343,6 +343,9 @@ Settings
Shotgun Shotgun
== Espingarda == Espingarda
Show chat
== Mostrar conversa
Show name plates Show name plates
== Mostrar apelidos == Mostrar apelidos
@ -389,7 +392,7 @@ The server is running a non-standard tuning on a pure game type.
== O servidor está rodando uma modificação não padrão em um tipo de jogo puro. == O servidor está rodando uma modificação não padrão em um tipo de jogo puro.
Time limit Time limit
== Limite de tempo == Tempo máx.
Try again Try again
== Tente novamente == Tente novamente
@ -435,8 +438,6 @@ Your skin
##### needs translation #### ##### needs translation ####
Show chat
== Show chat
##### old translations #### ##### old translations ####

View file

@ -19,7 +19,10 @@ void CControls::OnReset()
{ {
m_LastData.m_Direction = 0; m_LastData.m_Direction = 0;
m_LastData.m_Hook = 0; m_LastData.m_Hook = 0;
m_LastData.m_Fire = 0; // simulate releasing the fire button
if((m_LastData.m_Fire&1) != 0)
m_LastData.m_Fire++;
m_LastData.m_Fire &= INPUT_STATE_MASK;
m_LastData.m_Jump = 0; m_LastData.m_Jump = 0;
m_InputData = m_LastData; m_InputData = m_LastData;

View file

@ -1045,6 +1045,14 @@ void CEditor::DoQuadPoint(CQuad *q, int QuadIndex, int v)
s_Operation = OP_CONTEXT_MENU; s_Operation = OP_CONTEXT_MENU;
m_SelectedQuad = QuadIndex; m_SelectedQuad = QuadIndex;
UI()->SetActiveItem(pId); UI()->SetActiveItem(pId);
if(!(m_SelectedPoints&(1<<v)))
{
if(Input()->KeyPressed(KEY_LSHIFT) || Input()->KeyPressed(KEY_RSHIFT))
m_SelectedPoints |= 1<<v;
else
m_SelectedPoints = 1<<v;
s_Moved = true;
}
} }
} }
else else