diff options
Diffstat (limited to 'base/main.cpp')
-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__) |