summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/softlist.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/softlist.c')
-rw-r--r--src/emu/softlist.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/softlist.c b/src/emu/softlist.c
index 4394d2e6e1d..50a73ff726d 100644
--- a/src/emu/softlist.c
+++ b/src/emu/softlist.c
@@ -183,7 +183,7 @@ INLINE void unknown_attribute_value(software_list *swlist,
#define global_strdup(s) strcpy(global_alloc_array(char, strlen(s) + 1), s)
-static void software_name_split(const char *swlist_swname, char **swlist_name, char **swname, char **swpart )
+void software_name_split(const char *swlist_swname, char **swlist_name, char **swname, char **swpart )
{
const char *split_1st_loc = strchr( swlist_swname, ':' );
const char *split_2nd_loc = ( split_1st_loc ) ? strchr( split_1st_loc + 1, ':' ) : NULL;