DREAMWEB: Fix regression in rollEndCredits
I had previously tested the wrong end credits by accident. Oops...
This commit is contained in:
parent
a5992d9b9f
commit
cc079c739a
1 changed files with 1 additions and 1 deletions
|
@ -782,7 +782,7 @@ void DreamBase::rollEndCredits() {
|
|||
// Output up to 18 lines of text
|
||||
uint16 y = 10 - j;
|
||||
const uint8 *tmp_str = string;
|
||||
for (int k = 0; k < 18; ++j) {
|
||||
for (int k = 0; k < 18; ++k) {
|
||||
DreamBase::printDirect(&tmp_str, 75, &y, 160 + 1, true);
|
||||
y += linespacing;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue