this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #550 from trelemar/master

Added "wiki" command to open github wiki in browser

authored by

Vadim Grigoruk and committed by
GitHub
cb4076fd 53daaefd

+7
+7
src/console.c
··· 323 323 324 324 static void onConsoleHelpCommand(Console* console, const char* param); 325 325 326 + static void onConsoleWikiCommand(Console* console, const char* param) 327 + { 328 + getSystem()->openSystemPath("https://github.com/nesbox/TIC-80/wiki"); 329 + commandDone(console); 330 + } 331 + 326 332 static void onConsoleExitCommand(Console* console, const char* param) 327 333 { 328 334 exitStudio(); ··· 2350 2356 } AvailableConsoleCommands[] = 2351 2357 { 2352 2358 {"help", NULL, "show this info", onConsoleHelpCommand}, 2359 + {"wiki", NULL, "open github wiki page", onConsoleWikiCommand}, 2353 2360 {"ram", NULL, "show memory info", onConsoleRamCommand}, 2354 2361 {"exit", "quit", "exit the application", onConsoleExitCommand}, 2355 2362 {"new", NULL, "create new cart", onConsoleNewCommand},