summaryrefslogtreecommitdiffstats
path: root/src/ui/edit.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui/edit.cpp')
-rw-r--r--src/ui/edit.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/ui/edit.cpp b/src/ui/edit.cpp
index cc911a4..d298ad3 100644
--- a/src/ui/edit.cpp
+++ b/src/ui/edit.cpp
@@ -20,6 +20,8 @@
#include "edit.h"
+#include <string.h>
+
namespace Ui {
const float MARGX = (5.0f/640.0f);
@@ -1778,7 +1780,8 @@ bool CEdit::ReadText(const char *filename, int addSize)
{
if ( SearchKey(buffer+i+5, key) )
{
- res = m_app->GetKey(key, 0); // TODO
+ res = 0;
+ //res = m_app->GetInputBinding(key).key; // TODO input bindings
if ( res != 0 )
{
if ( GetResource(RES_KEY, res, iName) )
@@ -1797,7 +1800,8 @@ bool CEdit::ReadText(const char *filename, int addSize)
m_format[j] = font;
j ++;
- res = m_app->GetKey(key, 1); // TODO
+ // res = m_app->GetInputBinding(key).joy; // TODO input bindings
+ res = 0;
if ( res != 0 )
{
if ( GetResource(RES_KEY, res, iName) )