From 828b3eb81323ba48f845f09be021e3e809dc9788 Mon Sep 17 00:00:00 2001 From: Guus Sliepen Date: Wed, 10 Jul 2013 21:16:31 +0200 Subject: [PATCH] Show text saying you can press Escape to skip during cutscenes. Taken from MODmurky's version of Starfighter. --- code/script.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/script.cpp b/code/script.cpp index 1d49b88..2440a4b 100644 --- a/code/script.cpp +++ b/code/script.cpp @@ -310,6 +310,8 @@ void doCutscene(int scene) if ((showMessage) && (messageBox != NULL)) blit(messageBox, (screen->w - messageBox->w) / 2, screen->h - 100); + drawString("Press [Escape] to skip", -1, 580, FONT_WHITE); + delayFrame(); if (engine.keyState[SDLK_ESCAPE])