Oops, fixed typo in Console output.

git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@1885 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
stephena 2009-09-14 19:33:36 +00:00
parent 2fa8b1ee70
commit f283052d36
1 changed files with 1 additions and 1 deletions

View File

@ -798,7 +798,7 @@ void Console::toggleTIABit(TIABit bit, const string& bitname, bool show) const
void Console::toggleTIACollision(TIABit bit, const string& bitname, bool show) const
{
bool result = myTIA->toggleCollision(bit);
string message = bitname + (result ? " collision enabled" : " collsion disabled");
string message = bitname + (result ? " collision enabled" : " collision disabled");
myOSystem->frameBuffer().showMessage(message);
}