Add missing parameters to help command

This commit is contained in:
Iwan Timmer
2017-06-09 22:58:50 +02:00
parent 0b7c2f62a7
commit a8f432cbed
3 changed files with 7 additions and 4 deletions

View File

@@ -34,7 +34,7 @@
typedef bool(*ImxInit)();
enum platform platform_check(char* name) {
bool std = strcmp(name, "default") == 0;
bool std = strcmp(name, "auto") == 0;
#ifdef HAVE_IMX
if (std || strcmp(name, "imx") == 0) {
void *handle = dlopen("libmoonlight-imx.so", RTLD_NOW | RTLD_GLOBAL);