diff options
-rw-r--r-- | engines/zvision/events.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/engines/zvision/events.cpp b/engines/zvision/events.cpp index f382bb63e0..798d75b375 100644 --- a/engines/zvision/events.cpp +++ b/engines/zvision/events.cpp @@ -33,6 +33,7 @@ #include "zvision/render_manager.h" #include "zvision/script_manager.h" #include "zvision/mouse_event.h" +#include "zvision/rlf_animation.h" namespace ZVision { @@ -95,6 +96,12 @@ void ZVision::processEvents() { case Common::KEYCODE_F1: cycleThroughCursors(); break; + case Common::KEYCODE_F2: + { + RlfAnimation *animation = new RlfAnimation("te2ea21c.rlf"); + playAnimation(animation, 0, 0); + break; + } default: break; } |