This commit is contained in:
Donough Liu 2019-06-22 09:37:24 +08:00
parent b58b93ac98
commit 25926b0aec
3 changed files with 3 additions and 3 deletions

View File

@ -57,7 +57,7 @@ public:
enum AttachmentType
{
ATTACH_FIRST = 0,
// It is importabt that parachute, bomb and anvil stay in this order,
// It is important that parachute, bomb and anvil stay in this order,
// since the attachment type is mapped to a random integer (and bomb
// must be last, since a bomb will not be given in battle mode).
ATTACH_PARACHUTE = 0,

View File

@ -3279,7 +3279,7 @@ void Kart::updateGraphics(float dt)
else
m_stars_effect->update(dt);
// Upate particle effects (creation rate, and emitter size
// Update particle effects (creation rate, and emitter size
// depending on speed)
m_kart_gfx->update(dt);
if (m_collision_particles) m_collision_particles->update(dt);

View File

@ -23,7 +23,7 @@
#include "utils/cpp2011.hpp"
/**
* \brief Dialog shown after a resolution switch sot he user may confirm if
* \brief Dialog shown after a resolution switch so the user may confirm if
* the resolution works.
* \ingroup states_screens
*/