mirror of
https://github.com/vale981/openAV-Luppp
synced 2025-03-05 09:01:39 -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 ),
|
samplerate( 0 ),
|
||||||
window(1110,650),
|
window(1110,650),
|
||||||
|
|
||||||
|
@ -453,7 +453,7 @@ Gui::Gui(std::string argZero) :
|
||||||
|
|
||||||
if ( nsm_init( nsm, nsm_url ) == 0 )
|
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");
|
LUPPP_NOTE("Announcing to NSM");
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
|
@ -47,7 +47,7 @@ class AudioBuffer;
|
||||||
class Gui
|
class Gui
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
Gui(std::string argZero);
|
Gui(const char* argZero);
|
||||||
~Gui();
|
~Gui();
|
||||||
|
|
||||||
int show();
|
int show();
|
||||||
|
|
Loading…
Add table
Reference in a new issue