-
Notifications
You must be signed in to change notification settings - Fork 5
/
patches.zibri
66 lines (64 loc) · 2.52 KB
/
patches.zibri
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
Index: src/arch/gtk3/uiabout.c
===================================================================
--- src/arch/gtk3/uiabout.c (revision 44418)
+++ src/arch/gtk3/uiabout.c (working copy)
@@ -148,7 +148,6 @@
{
archdep_runtime_info_t runtime_info;
char version[VERSION_STRING_MAX];
- const char *model;
char buffer[256];
GtkWidget *about = gtk_about_dialog_new();
GdkPixbuf *logo = get_vice_logo();
@@ -195,40 +194,7 @@
}
gtk_about_dialog_set_version(GTK_ABOUT_DIALOG(about), version);
- /* Describe the program */
- switch (machine_class) {
- default: /* fall through */ /* fix warning */
- case VICE_MACHINE_C64: /* fall through */
- case VICE_MACHINE_C64SC: /* fall through */
- case VICE_MACHINE_VSID:
- model = "Commodore 64";
- break;
- case VICE_MACHINE_C64DTV:
- model = "C64 DTV";
- break;
- case VICE_MACHINE_C128:
- model = "Commodore 128";
- break;
- case VICE_MACHINE_SCPU64:
- model = "Commodore 64 with SuperCPU";
- break;
- case VICE_MACHINE_VIC20:
- model = "Commodore VIC-20";
- break;
- case VICE_MACHINE_PLUS4:
- model = "Commodore 16/116 and Plus/4";
- break;
- case VICE_MACHINE_PET:
- model = "Commodore PET and SuperPET";
- break;
- case VICE_MACHINE_CBM5x0:
- model = "Commodore CBM-II 510 (P500)";
- break;
- case VICE_MACHINE_CBM6x0:
- model = "Commodore CBM-II 6x0 and 7x0";
- break;
- }
- g_snprintf(buffer, sizeof(buffer), "The %s Emulator", model);
+ g_snprintf(buffer, sizeof(buffer), "𝓩𝓲𝓫𝓻𝓲'𝓼 𝓑𝓾𝓲𝓵𝓭.");
gtk_about_dialog_set_comments(GTK_ABOUT_DIALOG(about), buffer);
/* set license */
Index: src/drive/driveimage.c
===================================================================
--- src/drive/driveimage.c (revision 45001)
+++ src/drive/driveimage.c (working copy)
@@ -221,6 +221,7 @@
}
drive->complicated_image_loaded = ((drive->image->type == DISK_IMAGE_TYPE_P64)
|| (drive->image->type == DISK_IMAGE_TYPE_G64)
+ || (drive->image->type == DISK_IMAGE_TYPE_D64)
|| (drive->image->type == DISK_IMAGE_TYPE_G71));
drive_set_half_track(drive->current_half_track, drive->side, drive);
return 0;