Corrected wrong message "shotshot" to "snapshot"

This commit is contained in:
nanochess 2017-10-11 19:55:19 -05:00 committed by Stephen Anthony
parent 10bdcd58d2
commit 3a853b8944
1 changed files with 2 additions and 2 deletions

View File

@ -445,12 +445,12 @@ void EventHandler::handleKeyEvent(StellaKey key, StellaMod mod, bool state)
uInt32 interval = myOSystem.settings().getInt("ssinterval"); uInt32 interval = myOSystem.settings().getInt("ssinterval");
if(mod & KBDM_SHIFT) if(mod & KBDM_SHIFT)
{ {
buf << "Enabling shotshots every frame"; buf << "Enabling snapshots every frame";
interval = 1; interval = 1;
} }
else else
{ {
buf << "Enabling shotshots in " << interval << " second intervals"; buf << "Enabling snapshots in " << interval << " second intervals";
interval *= uInt32(myOSystem.frameRate()); interval *= uInt32(myOSystem.frameRate());
} }
myOSystem.frameBuffer().showMessage(buf.str()); myOSystem.frameBuffer().showMessage(buf.str());