LAB: Make breadcrumb key checks more consistent
This platform check was lost in
60d4f0a069
.
This commit is contained in:
parent
edb93f6e90
commit
f23dcd64b0
1 changed files with 1 additions and 1 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue