mirror of
https://github.com/vale981/openAV-Luppp
synced 2025-03-04 16:51:37 -05:00
-Working on issue #70
This commit is contained in:
parent
96dd502d67
commit
7408d51d33
2 changed files with 3 additions and 3 deletions
|
@ -329,7 +329,7 @@ static int cb_nsm_save ( char **out_msg, void *userdata )
|
|||
|
||||
|
||||
|
||||
Gui::Gui(std::string argZero) :
|
||||
Gui::Gui(const char* argZero) :
|
||||
samplerate( 0 ),
|
||||
window(1110,650),
|
||||
|
||||
|
@ -453,7 +453,7 @@ Gui::Gui(std::string argZero) :
|
|||
|
||||
if ( nsm_init( nsm, nsm_url ) == 0 )
|
||||
{
|
||||
nsm_send_announce( nsm, "Luppp", "", argZero.c_str() );
|
||||
nsm_send_announce( nsm, "Luppp", "", argZero );
|
||||
LUPPP_NOTE("Announcing to NSM");
|
||||
}
|
||||
else
|
||||
|
|
|
@ -47,7 +47,7 @@ class AudioBuffer;
|
|||
class Gui
|
||||
{
|
||||
public:
|
||||
Gui(std::string argZero);
|
||||
Gui(const char* argZero);
|
||||
~Gui();
|
||||
|
||||
int show();
|
||||
|
|
Loading…
Add table
Reference in a new issue