DREAMWEB: Fix regression in rollEndCredits

I had previously tested the wrong end credits by accident. Oops...
This commit is contained in:
Willem Jan Palenstijn 2011-12-12 14:03:35 +01:00
parent a5992d9b9f
commit cc079c739a

View file

@ -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;
}