From 1b51e1344a9df06ec0f16972c4d08916aa441add Mon Sep 17 00:00:00 2001 From: palana Date: Sun, 12 Jan 2014 23:01:40 +0100 Subject: [PATCH] Consolidated start stream hotkey/button behaviour if keep recording is enabled --- Source/OBSHotkeyHandlers.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/OBSHotkeyHandlers.cpp b/Source/OBSHotkeyHandlers.cpp index ca1c7575..99a86c1e 100644 --- a/Source/OBSHotkeyHandlers.cpp +++ b/Source/OBSHotkeyHandlers.cpp @@ -27,7 +27,7 @@ void STDCALL OBS::StartStreamHotkey(DWORD hotkey, UPARAM param, bool bDown) if(App->bStartStreamHotkeyDown && !bDown) App->bStartStreamHotkeyDown = false; - else if(!App->bRunning) + else if(!App->bRunning || !App->bStreaming) { if(App->bStartStreamHotkeyDown = bDown) App->Start();