aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/window_text_buffer.h
diff options
context:
space:
mode:
authorPaul Gilbert2018-11-17 21:26:12 -0800
committerPaul Gilbert2018-12-08 19:05:59 -0800
commit88b0e5d52fa26f64b089f1b8d406ada46434e6d3 (patch)
tree8fdb6d62f0500f6c7a0ba00d0fc453c46cd5c1eb /engines/glk/window_text_buffer.h
parent0167d988fae3a54f526e004ac866db6636307f6f (diff)
downloadscummvm-rg350-88b0e5d52fa26f64b089f1b8d406ada46434e6d3.tar.gz
scummvm-rg350-88b0e5d52fa26f64b089f1b8d406ada46434e6d3.tar.bz2
scummvm-rg350-88b0e5d52fa26f64b089f1b8d406ada46434e6d3.zip
GLK: Change text buffer history array to use Array of U32Strings
Diffstat (limited to 'engines/glk/window_text_buffer.h')
-rw-r--r--engines/glk/window_text_buffer.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/engines/glk/window_text_buffer.h b/engines/glk/window_text_buffer.h
index 4384986640..728919f46a 100644
--- a/engines/glk/window_text_buffer.h
+++ b/engines/glk/window_text_buffer.h
@@ -26,6 +26,8 @@
#include "glk/windows.h"
#include "glk/picture.h"
#include "glk/speech.h"
+#include "common/array.h"
+#include "common/ustr.h"
namespace Glk {
@@ -106,7 +108,7 @@ public:
int _radjn;
/* Command history. */
- glui32 *_history[HISTORYLEN];
+ Common::Array<Common::U32String> _history;
int _historyPos;
int _historyFirst, _historyPresent;