Skip to content

Commit

Permalink
remove unused variable in the SDL gui. Update DOSBox copyright date to
Browse files Browse the repository at this point in the history
reflect that we're now halfway through 2014.
  • Loading branch information
joncampbell123 committed May 23, 2014
1 parent ee4c41d commit 128ebb3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion scripts/dosbox-installer.nsi
Expand Up @@ -2,7 +2,7 @@
!define VER_MINOR 74
!define APP_NAME "DOSBox ${VER_MAYOR}.${VER_MINOR} Installer"
!define COMP_NAME "DOSBox Team"
!define COPYRIGHT "Copyright © 2002-2013 DOSBox Team"
!define COPYRIGHT "Copyright © 2002-2014 DOSBox Team"
!define DESCRIPTION "DOSBox Installer"

VIProductVersion "${VER_MAYOR}.${VER_MINOR}.0.0"
Expand Down
3 changes: 1 addition & 2 deletions src/gui/sdl_gui.cpp
Expand Up @@ -681,7 +681,6 @@ class SetLocalSize : public GUI::ToplevelWindow {

void actionExecuted(GUI::ActionEventSource *b, const GUI::String &arg) {
if (arg == "OK") {
char * text=name->getText();
extern unsigned int hdd_defsize;
int human_readable = atoi(name->getText());
if (human_readable < 0)
Expand Down Expand Up @@ -759,7 +758,7 @@ class ConfigurationWindow : public GUI::ToplevelWindow {
Section_prop *section = static_cast<Section_prop *>(sec);
new SectionEditor(getScreen(), 50, 30, section);
} else if (arg == "About") {
new GUI::MessageBox2(getScreen(), 200, 150, 280, "About DOSBox", "\nDOSBox-X\nAn emulator for old DOS Games\n\nCopyright 2002-2013\nThe DOSBox Team");
new GUI::MessageBox2(getScreen(), 200, 150, 280, "About DOSBox", "\nDOSBox-X\nAn emulator for old DOS Games\n\nCopyright 2002-2014\nThe DOSBox Team");
} else if (arg == "Introduction") {
new GUI::MessageBox2(getScreen(), 20, 50, 600, "Introduction", MSG_Get("PROGRAM_INTRO"));
} else if (arg == "Getting Started") {
Expand Down
4 changes: 2 additions & 2 deletions src/winres.rc
Expand Up @@ -1032,12 +1032,12 @@ BEGIN
BEGIN
BLOCK "040904b0"
BEGIN
VALUE "Comments", "?2002-2013 DOSBox Team, published under GNU GPL"
VALUE "Comments", "(C) 2002-2014 DOSBox Team, published under GNU GPL"
VALUE "CompanyName", "DOSBox Team"
VALUE "FileDescription", "DOSBox DOS Emulator"
VALUE "FileVersion", "0, 74, 0, 0"
VALUE "InternalName", "DOSBox"
VALUE "LegalCopyright", "Copyright ?2002-2013 DOSBox Team"
VALUE "LegalCopyright", "Copyright ?2002-2014 DOSBox Team"
VALUE "OriginalFilename", "dosbox.exe"
VALUE "ProductName", "DOSBox DOS Emulator"
VALUE "ProductVersion", "0, 74, 0, 0"
Expand Down

0 comments on commit 128ebb3

Please sign in to comment.