LAB: Make breadcrumb key checks more consistent

This platform check was lost in
60d4f0a069.
This commit is contained in:
Willem Jan Palenstijn 2015-12-26 18:54:44 +01:00
parent edb93f6e90
commit f23dcd64b0

View file

@ -620,7 +620,7 @@ bool LabEngine::processKey(IntuiMessage *curMsg, uint32 msgClass, uint16 &qualif
_droppingCrumbs = true;
mayShowCrumbIndicator();
_graphics->screenUpdate();
} else if ((code == Common::KEYCODE_f) || (code == Common::KEYCODE_r)) {
} else if (getPlatform() == Common::kPlatformWindows && (code == Common::KEYCODE_f || code == Common::KEYCODE_r)) {
// Follow bread crumbs
if (_droppingCrumbs) {
if (_numCrumbs > 0) {