We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c9d43a8 commit f345505Copy full SHA for f345505
pc/shared/Organization.h
@@ -16,8 +16,9 @@
16
17
/* use HTTP so it can be easily forwarded in the future. Site will automatically
18
convert it to HTTPS */
19
+#define WIKI_URL "https://wiki.snestracker.com"
20
#define PATREON_URL "http://patreon.snestracker.com"
21
#define MERCH_URL "http://shop.snestracker.com"
22
+#define STREAM_URL "https://stream.snestracker.com"
23
#define SOUNDCLOUD_URL "https://soundcloud.snestracker.com"
-#define WIKI_URL "https://wiki.snestracker.com"
-#define TWITTER_URL "https://twitter.snestracker.com"
24
+#define TWITTER_URL "https://twitter.snestracker.com"
pc/tracker/Menu_Bar.cpp
@@ -527,6 +527,11 @@ int Menu_Bar::About_Context::clicked_wiki(void *nada)
527
openUrl(WIKI_URL);
528
}
529
530
+int Menu_Bar::About_Context::clicked_stream(void *nada)
531
+{
532
+ DEBUGLOG("CLICKED STREAM\n");
533
+ openUrl(STREAM_URL);
534
+}
535
int Menu_Bar::About_Context::clicked_twitter(void *nada)
536
{
537
DEBUGLOG("CLICKED TWITTER\n");
pc/tracker/Menu_Bar.h
@@ -114,10 +114,11 @@ struct Menu_Bar
114
static int clicked_merch(void *nada);
115
static int clicked_soundcloud(void *nada);
116
static int clicked_wiki(void *nada);
117
+ static int clicked_stream(void *nada);
118
static int clicked_twitter(void *nada);
119
120
Expanding_List menu;
- Context_Menu_Item menu_items[9] =
121
+ Context_Menu_Item menu_items[10] =
122
123
{ "About", true, NULL, NULL },
124
{"-", true, NULL, NULL, false},
@@ -126,6 +127,7 @@ struct Menu_Bar
126
127
{ "Patreon \x01", true, clicked_patreon, NULL },
128
{ "Gift Shop", true, clicked_merch, NULL },
129
{ "Soundcloud", true, clicked_soundcloud, NULL },
130
+ { "Stream", true, clicked_stream, NULL },
131
{ "Twitter", true, clicked_twitter, NULL },
132
{"", false, NULL, NULL}
133
};
0 commit comments