mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-12 12:09:15 +00:00
STARTREK: Fix Bug in text Command of Debug Console
This was incorrectly passing a single character, rather than a pointer for the string.
This commit is contained in:
parent
804ea64f31
commit
eac50757db
@ -101,7 +101,7 @@ bool Console::Cmd_Text(int argc, const char **argv) {
|
||||
|
||||
do {
|
||||
uint16 offset = textList[index].offsetEnglishCD;
|
||||
debugPrintf("%i - %i: %s\n", textList[index].id, offset, rdfData[offset]);
|
||||
debugPrintf("%i - %i: %s\n", textList[index].id, offset, rdfData+offset);
|
||||
index++;
|
||||
} while (textList[index].id != -1);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user