~ubuntu-branches/ubuntu/trusty/vice/trusty-proposed

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): Laszlo Boszormenyi (GCS)
  • Date: 2013-07-28 20:38:23 UTC
  • mfrom: (1.2.5)
  • Revision ID: package-import@ubuntu.com-20130728203823-l905cztdj615zq2p
Tags: 2.4.dfsg-1
* New upstream release (closes: #693065, #693641).
* Drop vice-ffmpeg.patch , applied upstream.
* Disable architecture specific compilation (closes: #686400, #714136).

Show diffs side-by-side

added added

removed removed

Lines of Context:
52
52
static char *format_name = NULL;
53
53
static unsigned int file_type = 0;
54
54
 
55
 
static char *image_type_name[] = { ".d64", ".d71", ".d80", ".d81", ".d82", ".g64", ".x64" };
56
 
static char *image_type_name_for_user[] = { "D64", "D71", "D80" ,"D81", "D82", "G64", "X64" };
 
55
static char *image_type_name[] = { ".d64", ".d71", ".d80", ".d81", ".d82", ".g64", ".p64", ".x64" };
 
56
static char *image_type_name_for_user[] = { "D64", "D71", "D80" ,"D81", "D82", "G64", "P64", "X64" };
57
57
static int image_type[] = {
58
58
    DISK_IMAGE_TYPE_D64,
59
59
    DISK_IMAGE_TYPE_D71,
61
61
    DISK_IMAGE_TYPE_D81,
62
62
    DISK_IMAGE_TYPE_D82,
63
63
    DISK_IMAGE_TYPE_G64,
 
64
    DISK_IMAGE_TYPE_P64,
64
65
    DISK_IMAGE_TYPE_X64
65
66
};
66
67
 
89
90
      (void *)4, 0, TUI_MENU_BEH_CLOSE, NULL, NULL },
90
91
    { "_G64", "Create GCR disk image", create_set_disk_image_type_callback,
91
92
      (void *)5, 0, TUI_MENU_BEH_CLOSE, NULL, NULL },
 
93
    { "_P64", "Create P64 disk image", create_set_disk_image_type_callback,
 
94
      (void *)6, 0, TUI_MENU_BEH_CLOSE, NULL, NULL },
92
95
    { "_X64", "Create X64 disk image", create_set_disk_image_type_callback,
93
 
      (void *)6, 0, TUI_MENU_BEH_CLOSE, NULL, NULL },
 
96
      (void *)7, 0, TUI_MENU_BEH_CLOSE, NULL, NULL },
94
97
    { NULL }
95
98
};
96
99
 
156
159
TUI_MENU_DEFINE_TOGGLE(AutostartWarp)
157
160
TUI_MENU_DEFINE_TOGGLE(AutostartRunWithColon)
158
161
TUI_MENU_DEFINE_TOGGLE(AutostartBasicLoad)
 
162
TUI_MENU_DEFINE_TOGGLE(AutostartDelayRandom)
159
163
TUI_MENU_DEFINE_RADIO(AutostartPrgMode)
160
164
 
161
165
static TUI_MENU_CALLBACK(autostart_prg_mode_submenu_callback)
227
231
    { "Load to BASIC start", "Load without ,1",
228
232
      toggle_AutostartBasicLoad_callback, NULL, 3,
229
233
      TUI_MENU_BEH_CONTINUE, NULL, NULL },
 
234
    { "Random delay", "Random delay",
 
235
      toggle_AutostartDelayRandom_callback, NULL, 3,
 
236
      TUI_MENU_BEH_CONTINUE, NULL, NULL },
230
237
    { "Autostart PRG mode:", "Select the mode of the autostart PRG",
231
238
      autostart_prg_mode_submenu_callback, NULL, 11,
232
239
      TUI_MENU_BEH_CONTINUE, autostart_prg_mode_submenu, "Autostart PRG mode" },