diff options
author | Stephen Kennedy | 2008-07-04 11:38:15 +0000 |
---|---|---|
committer | Stephen Kennedy | 2008-07-04 11:38:15 +0000 |
commit | 1ef9d712da9158d009576876e2f671f7c5f06f92 (patch) | |
tree | de65cbb0c082429407e0a5b9f614c97688e46fb2 /base | |
parent | 4ca4cc2767678abf5eca7ecf431576d2214a7b17 (diff) | |
download | scummvm-rg350-1ef9d712da9158d009576876e2f671f7c5f06f92.tar.gz scummvm-rg350-1ef9d712da9158d009576876e2f671f7c5f06f92.tar.bz2 scummvm-rg350-1ef9d712da9158d009576876e2f671f7c5f06f92.zip |
- MILESTONE - VirtualKeyboardParser successfully parsing a simple test pack
- XMLParser - small improvements
svn-id: r32905
Diffstat (limited to 'base')
-rw-r--r-- | base/main.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/base/main.cpp b/base/main.cpp index 88d9f3bab5..4ab486ee9b 100644 --- a/base/main.cpp +++ b/base/main.cpp @@ -52,6 +52,12 @@ #include "gui/launcher.h" #endif +#define ___VK_TEST + +#if defined(___VK_TEST) +#include "gui/virtualKeyboard.h" +#endif + static bool launcherDialog(OSystem &system) { @@ -68,6 +74,13 @@ static bool launcherDialog(OSystem &system) { // Clear the main screen system.clearScreen(); +#if defined(___VK_TEST) + GUI::VirtualKeyboard *vk = new GUI::VirtualKeyboard(); + if (vk->loadKeyboardPack("test")) + printf("Successfully parsed test keyboard pack\n"); + +#endif + #if defined(_WIN32_WCE) CELauncherDialog dlg; #elif defined(__DC__) |