~ubuntu-branches/ubuntu/quantal/vice/quantal

« back to all changes in this revision

Viewing changes to src/arch/msdos/uigeoram.c

  • Committer: Bazaar Package Importer
  • Author(s): Laszlo Boszormenyi (GCS)
  • Date: 2010-02-11 18:30:16 UTC
  • mfrom: (1.1.8 upstream) (9.2.2 sid)
  • Revision ID: james.westby@ubuntu.com-20100211183016-f6n8usn3tzp0u6dp
Tags: 2.2.dfsg-1
* New upstream release, C64 DTV is included so update package description
  and add it to the menu.
* Drop patch fixing build failure with gcc-4.4 , applied upstream.
* Fix some lintian problems and clean up debian/rules .

Show diffs side-by-side

added added

removed removed

Lines of Context:
75
75
 
76
76
        *s = '\0';
77
77
 
78
 
        if (tui_input_string("Change GEORAM image name",
79
 
                             "New image name:", s, 255) == -1)
 
78
        if (tui_input_string("Change GEORAM image name", "New image name:", s, 255) == -1) {
80
79
            return NULL;
 
80
        }
81
81
 
82
 
        if (*s == '\0')
 
82
        if (*s == '\0') {
83
83
            return NULL;
 
84
        }
84
85
 
85
86
        resources_set_string("GEORAMfilename", s);
86
87
    }
114
115
 
115
116
    tui_menu_add_submenu(parent_submenu, "_GEORAM settings...",
116
117
                         "GEORAM settings",
117
 
                         ui_georam_submenu, NULL, 0,
 
118
                         ui_georam_submenu,
 
119
                         NULL, 0,
118
120
                         TUI_MENU_BEH_CONTINUE);
119
121
}
120