diff options
| author | 2025-04-28 14:11:28 -0400 | |
|---|---|---|
| committer | 2025-04-28 14:11:28 -0400 | |
| commit | c8c0af300dde117a839f2d5d6b777694d7f118e9 (patch) | |
| tree | 3297f1ba256da0b837fbaa9c581d7f420ce98a4a /src/fruits/ctv | |
| parent | 61492af23ecc5dd9ab4956a84a7c0451deb8b84b (diff) | |
| download | camu-c8c0af300dde117a839f2d5d6b777694d7f118e9.tar.gz camu-c8c0af300dde117a839f2d5d6b777694d7f118e9.tar.bz2 camu-c8c0af300dde117a839f2d5d6b777694d7f118e9.zip | |
Minor restructure and dependency updates
Signed-off-by: Andrew Opalach <andrew@akon.city>
Diffstat (limited to 'src/fruits/ctv')
| -rw-r--r-- | src/fruits/ctv/ctv.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/fruits/ctv/ctv.c b/src/fruits/ctv/ctv.c index 804cbed..5becb88 100644 --- a/src/fruits/ctv/ctv.c +++ b/src/fruits/ctv/ctv.c @@ -2,7 +2,7 @@ #include <android/log.h> #include "../../libsink/sink.h" -#include "../../sink/desktop.h" +#include "../../libsink/desktop.h" #ifdef CAMU_HAVE_FFMPEG #include "../../codec/ffmpeg/common.h" #endif @@ -26,7 +26,7 @@ static nn_thread_result NNWT_THREADCALL event_loop_thread(void *userdata) prefs->audio_lang = CAMU_LANG_ENGLISH; prefs->subtitle_lang = CAMU_LANG_ENGLISH; - if (!camu_desktop_connect(&c->desktop, &c->loop, CAMU_TEST_TYPE, &CAMU_TEST_ADDR, CAMU_PORT)) { + if (!camu_desktop_connect(&c->desktop, &al_str_c("ctv"), &c->loop, CAMU_TEST_TYPE, &CAMU_TEST_ADDR, CAMU_PORT)) { return 0; } @@ -56,7 +56,7 @@ s32 stl_platform_main(u32 argc, str *argv) camu_ff_common_init(); #endif - if (!camu_desktop_init(&c.desktop, "ctv")) { + if (!camu_desktop_open(&c.desktop, "ctv")) { return 0; } |