From a82e18f351b5e8cbef82ddd1839760781b21953a Mon Sep 17 00:00:00 2001 From: Tilman Sauerbeck Date: Fri, 29 Apr 2005 14:31:53 +0000 Subject: [PATCH] Changed MSG_ID_SET_SONGNAME arguments. --- src/message_handler.sma | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/src/message_handler.sma b/src/message_handler.sma index ff32440..b956bbb 100644 --- a/src/message_handler.sma +++ b/src/message_handler.sma @@ -1,4 +1,4 @@ -/* $Id: message_handler.sma 1 2005-04-19 09:41:42Z tilman $ */ +/* $Id: message_handler.sma 19 2005-04-29 14:31:53Z tilman $ */ #define MSG_ID_SET_SONGNAME 0 @@ -6,12 +6,15 @@ public message (Msg_Type:type, id, ...) { switch (id) { case MSG_ID_SET_SONGNAME: { - new buf[256], len; + new buf[256], artist[128], title[128], len; - if (type != MSG_STRING) + if (type != MSG_STRING_SET || numargs () != 4) return; - len = snprintf (buf, 256, "%s", getarg (2)); + getsarg (2, artist, 128); + getsarg (3, title, 128); + + len = snprintf (buf, 256, "%s - %s", artist, title); set_songname (buf, len); } } -- 2.30.2