From cd6c93cd9ea6f8d40d36cb48d70c9a690e46f7fe Mon Sep 17 00:00:00 2001 From: Gregory Hainaut Date: Wed, 3 Jun 2015 09:31:52 +0200 Subject: [PATCH] gsdx: silly mistake --- plugins/GSdx/GSState.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/GSdx/GSState.cpp b/plugins/GSdx/GSState.cpp index d0995b9308..e07daa2ad0 100644 --- a/plugins/GSdx/GSState.cpp +++ b/plugins/GSdx/GSState.cpp @@ -50,9 +50,9 @@ GSState::GSState() s_save = !!theApp.GetConfig("save", 0); s_savet = !!theApp.GetConfig("savet", 0); s_savez = !!theApp.GetConfig("savez", 0); - s_saven = !!theApp.GetConfig("saven", 0); s_savef = !!theApp.GetConfig("savef", 0); - s_savel = !!theApp.GetConfig("savel", 5000); + s_saven = theApp.GetConfig("saven", 0); + s_savel = theApp.GetConfig("savel", 5000); #ifdef __linux__ if (s_dump) { mkdir("/tmp/GS_HW_dump", 0777);