mirror of
https://github.com/libretro/scummvm.git
synced 2025-03-04 09:18:38 +00:00
GLK: Fix local unicode variables to be bool
This commit is contained in:
parent
402a8fb117
commit
315af395f1
@ -741,7 +741,7 @@ void TextBufferWindow::cancelLineEvent(Event *ev) {
|
||||
int len;
|
||||
void *inbuf;
|
||||
int inmax;
|
||||
int unicode = _lineRequestUni;
|
||||
bool unicode = _lineRequestUni;
|
||||
Event dummyEv;
|
||||
|
||||
if (!ev)
|
||||
@ -1399,7 +1399,7 @@ void TextBufferWindow::acceptLine(uint32 keycode) {
|
||||
Common::U32String s, o;
|
||||
int inmax;
|
||||
gidispatch_rock_t inarrayrock;
|
||||
int unicode = _lineRequestUni;
|
||||
bool unicode = _lineRequestUni;
|
||||
|
||||
if (!_inBuf)
|
||||
return;
|
||||
|
@ -362,7 +362,7 @@ void TextGridWindow::cancelLineEvent(Event *ev) {
|
||||
int ix;
|
||||
void *inbuf;
|
||||
int inmax;
|
||||
int unicode = _lineRequestUni;
|
||||
bool unicode = _lineRequestUni;
|
||||
gidispatch_rock_t inarrayrock;
|
||||
TextGridRow *ln = &_lines[_inOrgY];
|
||||
Event dummyEv;
|
||||
@ -454,7 +454,7 @@ void TextGridWindow::acceptLine(uint32 keycode) {
|
||||
int inmax;
|
||||
gidispatch_rock_t inarrayrock;
|
||||
TextGridRow *ln = &(_lines[_inOrgY]);
|
||||
int unicode = _lineRequestUni;
|
||||
bool unicode = _lineRequestUni;
|
||||
|
||||
if (!_inBuf)
|
||||
return;
|
||||
|
Loading…
x
Reference in New Issue
Block a user