diff options
author | Thierry Crozat | 2016-10-12 23:04:42 +0100 |
---|---|---|
committer | Thierry Crozat | 2016-10-12 23:04:42 +0100 |
commit | 0a186a66d6425212f9e1a340aa84b40709a55527 (patch) | |
tree | 0c746df9b9e87176f75b2529e5ba2025295c4af4 | |
parent | ce89406b9a7e68acefae307281dc98e97a7bca88 (diff) | |
download | scummvm-rg350-0a186a66d6425212f9e1a340aa84b40709a55527.tar.gz scummvm-rg350-0a186a66d6425212f9e1a340aa84b40709a55527.tar.bz2 scummvm-rg350-0a186a66d6425212f9e1a340aa84b40709a55527.zip |
TESTBED: Fix fullscreen test
The test was always failing when starting from the fullscreen state.
-rw-r--r-- | engines/testbed/graphics.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/testbed/graphics.cpp b/engines/testbed/graphics.cpp index afb1c5800a..e774008560 100644 --- a/engines/testbed/graphics.cpp +++ b/engines/testbed/graphics.cpp @@ -488,7 +488,7 @@ TestExitStatus GFXtests::fullScreenMode() { prompt = "This should be your initial state. Is it?"; - if (!Testsuite::handleInteractiveInput(prompt, "Yes, it is", "Nopes", shouldSelect)) { + if (!Testsuite::handleInteractiveInput(prompt, "Yes, it is", "Nopes", kOptionLeft)) { // User selected incorrect mode Testsuite::logDetailedPrintf("switching back to initial state failed\n"); passed = kTestFailed; |