diff --git a/vice/src/arch/gtk3/widgets/settings_hvsc.c b/vice/src/arch/gtk3/widgets/settings_hvsc.c index d113a7c7478..75846b87adc 100644 --- a/vice/src/arch/gtk3/widgets/settings_hvsc.c +++ b/vice/src/arch/gtk3/widgets/settings_hvsc.c @@ -101,7 +101,7 @@ GtkWidget *settings_hvsc_widget_create(GtkWidget *parent) grid = vice_gtk3_grid_new_spaced(VICE_GTK3_DEFAULT, VICE_GTK3_DEFAULT); - label = gtk_label_new("HSVC root directory"); + label = gtk_label_new("HVSC root directory"); gtk_widget_set_halign(label, GTK_ALIGN_START); hvsc_root_entry = vice_gtk3_resource_entry_new("HVSCRoot"); gtk_widget_set_hexpand(hvsc_root_entry, TRUE); diff --git a/vice/src/hvsc/base.c b/vice/src/hvsc/base.c index 50ba862da72..ca00eab8e71 100644 --- a/vice/src/hvsc/base.c +++ b/vice/src/hvsc/base.c @@ -545,7 +545,7 @@ void hvsc_set_paths(const char *path) } -/** \brief Free memory used by the HSVC paths +/** \brief Free memory used by the HVSC paths */ void hvsc_free_paths(void) { @@ -568,7 +568,7 @@ void hvsc_free_paths(void) } -/** \brief Strip the HSVC root path from \a path +/** \brief Strip the HVSC root path from \a path * * \param[in] path path to a PSID file inside the HVSC * @@ -579,7 +579,7 @@ void hvsc_free_paths(void) char *hvsc_path_strip_root(const char *path) { size_t plen = strlen(path); /* length of path */ - size_t rlen = (hvsc_root_path == NULL) ? 0 : strlen(hvsc_root_path); /* length of HSVC root path */ + size_t rlen = (hvsc_root_path == NULL) ? 0 : strlen(hvsc_root_path); /* length of HVSC root path */ char *result; if (rlen == 0) { @@ -587,7 +587,7 @@ char *hvsc_path_strip_root(const char *path) } else if (plen <= rlen) { result = hvsc_strdup(path); } else if (memcmp(path, hvsc_root_path, rlen) == 0) { - /* got HSVC root path */ + /* got HVSC root path */ result = hvsc_malloc(plen - rlen + 1u); memcpy(result, path + rlen, plen - rlen + 1u); } else { diff --git a/vice/src/hvsc/hvsc_defs.h b/vice/src/hvsc/hvsc_defs.h index fc62459ec9c..76c3f97ae6c 100644 --- a/vice/src/hvsc/hvsc_defs.h +++ b/vice/src/hvsc/hvsc_defs.h @@ -49,7 +49,7 @@ * This number indicates API version, when this number changes it means there * are incompatible changes in the API. Set via the Makefile. */ -#ifndef HSVC_LIB_VERSION_MAJ +#ifndef HVSC_LIB_VERSION_MAJ #define HVSC_LIB_VERSION_MAJ 0 #endif diff --git a/vice/src/hvsc/main.c b/vice/src/hvsc/main.c index 190cb2703cf..c6ab9d4a605 100644 --- a/vice/src/hvsc/main.c +++ b/vice/src/hvsc/main.c @@ -43,7 +43,7 @@ /** \brief Initialize the library * - * This sets the paths to the HSVC and the SLDB, STIL, and BUGlist files. + * This sets the paths to the HVSC and the SLDB, STIL, and BUGlist files. * * The \a path is expected to be an absolute path to the HVSC's root directory, * or `NULL` to use the environment variable `HVSC_BASE`.