aboutsummaryrefslogtreecommitdiff
path: root/engines/testbed/testbed.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/testbed/testbed.cpp')
-rw-r--r--engines/testbed/testbed.cpp11
1 files changed, 7 insertions, 4 deletions
diff --git a/engines/testbed/testbed.cpp b/engines/testbed/testbed.cpp
index 4d178d80bd..fb70acb9df 100644
--- a/engines/testbed/testbed.cpp
+++ b/engines/testbed/testbed.cpp
@@ -55,10 +55,13 @@ Common::Error TestbedEngine::run() {
// TODO: Implement that
bool interactive;
- Common::String prompt("Welcome to the ScummVM testbed! \n \
- It is a framework to test the various ScummVM subsystems namely GFX, Sound, FS, events etc. \n \
- If you are seeing this correctly, it means interactive tests would run on this system :)");
- interactive = Testsuite::handleInteractiveInput(prompt);
+ Common::String prompt("Welcome to the ScummVM testbed!\n"
+ "It is a framework to test the various ScummVM subsystems namely GFX, Sound, FS, events etc.\n"
+ "If you see this, it means interactive tests would run on this system :)");
+
+ // To be set from config file
+ interactive = true;
+ Testsuite::displayMessage(prompt, "proceed?");
if (interactive) {
printf("Running tests in Interactive Mode\n");