Ticket #5833: about-text.patch

File about-text.patch, 636 bytes (added by digitall, 13 years ago)

Workaround Patch For About/Credits Dialog

  • gui/about.cpp

    diff --git a/gui/about.cpp b/gui/about.cpp
    index 00dbc5f..a107f46 100644
    a b AboutDialog::AboutDialog()  
    8989        _lines.push_back(version);
    9090
    9191        Common::String date = Common::String::format(_("(built on %s)"), gScummVMBuildDate);
    92         _lines.push_back("C2" + date);
     92        _lines.push_back("C0" + date);
    9393
    9494        for (i = 0; i < ARRAYSIZE(copyright_text); i++)
    9595                addLine(copyright_text[i]);
    AboutDialog::AboutDialog()  
    115115          str += (**iter).getName();
    116116          addLine(str.c_str());
    117117
    118           str = "C2";
     118          str = "C0";
    119119          str += (**iter)->getOriginalCopyright();
    120120          addLine(str.c_str());
    121121