1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-24 22:14:36 +02:00

Minor typo fixes

This commit is contained in:
dydzio 2016-11-10 11:51:47 +01:00
parent aad675a7c4
commit 5c07e1c432
2 changed files with 2 additions and 2 deletions

View File

@ -483,7 +483,7 @@ bool MusicEntry::stop(int fade_ms)
{
if (Mix_PlayingMusic())
{
logGlobal->traceStream()<<"Stoping music file "<<currentName;
logGlobal->traceStream()<<"Stopping music file "<<currentName;
loop = 0;
Mix_FadeOutMusic(fade_ms);
return true;

View File

@ -47,7 +47,7 @@ int CRmgTemplateZoneConnection::getGuardStrength() const
void CRmgTemplateZoneConnection::setGuardStrength(int value)
{
if(value < 0) throw std::runtime_error("Negative value for guard strenth not allowed.");
if(value < 0) throw std::runtime_error("Negative value for guard strength not allowed.");
guardStrength = value;
}