Oops, I forgot that Visual C++ doesn't support static allocation of a dynamic array. This must be a gcc-only thing.

git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@1994 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
stephena 2010-04-08 21:30:35 +00:00
parent 5294859e6d
commit aab9ff0d54
1 changed files with 3 additions and 2 deletions

View File

@ -210,11 +210,12 @@ bool PromptWidget::handleKeyDown(int ascii, int keycode, int modifiers)
scrollToCurrent();
int len = _promptEndPos - _promptStartPos;
if(len > 256) len = 256;
int lastDelimPos = -1;
int lastDelimPos = -1;
char delimiter = '\0';
char str[len + 1];
char str[256];
for (i = 0; i < len; i++)
{
str[i] = buffer(_promptStartPos + i) & 0x7f;