From 7ca90872fb36f46b5d2c4e02b6b32dd32a0e6e6b Mon Sep 17 00:00:00 2001 From: Chris Burgener Date: Thu, 1 Sep 2016 21:59:12 -0400 Subject: [PATCH] Add simple OSD display --- UI/EmuScreen.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/UI/EmuScreen.cpp b/UI/EmuScreen.cpp index e1d678cbb7..0ea2693709 100644 --- a/UI/EmuScreen.cpp +++ b/UI/EmuScreen.cpp @@ -89,6 +89,7 @@ static void __EmuScreenVblank() if (g_Config.bDumpFrames && !startDumping) { avi.Start(PSP_CoreParameter().renderWidth, PSP_CoreParameter().renderHeight); + osm.Show("AVI Dump started.", 3.0f); startDumping = true; } if (g_Config.bDumpFrames && startDumping) @@ -98,6 +99,7 @@ static void __EmuScreenVblank() else if (!g_Config.bDumpFrames && startDumping) { avi.Stop(); + osm.Show("AVI Dump stopped.", 3.0f); startDumping = false; } } @@ -250,6 +252,7 @@ EmuScreen::~EmuScreen() { if (g_Config.bDumpFrames && startDumping) { avi.Stop(); + osm.Show("AVI Dump stopped.", 3.0f); startDumping = false; } }