aboutsummaryrefslogtreecommitdiff
path: root/engines/testbed/testbed.cpp
diff options
context:
space:
mode:
authorNeeraj Kumar2010-06-02 13:56:04 +0000
committerNeeraj Kumar2010-06-02 13:56:04 +0000
commit91a8d25cea4eb44e55ac5e966b21c89bd044bc49 (patch)
tree71a50e3539402ec3c4fbad82c59fa92eb81a0696 /engines/testbed/testbed.cpp
parent5df3809d371c1d37d03dfd51689a58420cc337a6 (diff)
downloadscummvm-rg350-91a8d25cea4eb44e55ac5e966b21c89bd044bc49.tar.gz
scummvm-rg350-91a8d25cea4eb44e55ac5e966b21c89bd044bc49.tar.bz2
scummvm-rg350-91a8d25cea4eb44e55ac5e966b21c89bd044bc49.zip
completed the basic testsuite class
svn-id: r49392
Diffstat (limited to 'engines/testbed/testbed.cpp')
-rw-r--r--engines/testbed/testbed.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/engines/testbed/testbed.cpp b/engines/testbed/testbed.cpp
index 6af17c888e..6cf69dc176 100644
--- a/engines/testbed/testbed.cpp
+++ b/engines/testbed/testbed.cpp
@@ -4,6 +4,7 @@
#include "engines/util.h"
#include "testbed/testbed.h"
+#include "testbed/graphics.h"
namespace Testbed {
@@ -49,7 +50,9 @@ Common::Error TestbedEngine::run() {
// Additional setup.
printf("TestbedEngine::init\n");
-
+ GFXTestSuite ts;
+ ts.execute();
+
// Your main even loop should be (invoked from) here.
printf("TestbedEngine::go: Hello, World!\n");