From dbd50682bb9f78f0d1a07943ac026dd2b606ef22 Mon Sep 17 00:00:00 2001 From: DizzRL Date: Tue, 4 Feb 2025 11:19:53 -0500 Subject: [PATCH 1/5] Update main.yml --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 86335a5..feea371 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -40,7 +40,7 @@ jobs: subject-path: ./ps5debug.elf - name: Upload - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: PS5Debug path: ./ps5debug.elf From 22a5ae2dd3209af48cb0bda67a87a2cbeaac370e Mon Sep 17 00:00:00 2001 From: DizzRL Date: Tue, 4 Feb 2025 12:08:14 -0500 Subject: [PATCH 2/5] Update main.yml --- .github/workflows/main.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index feea371..372a153 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -19,6 +19,11 @@ jobs: - name: Checkout uses: actions/checkout@v3 + - name: Environment Variables + run: | + export CFLAGS="-Wno-error" + export CXXFLAGS="-Wno-error" + - name: Install dependencies run: | sudo apt update From 679f3e1a6a101bd6c5687fab13c1a235ceee6a0e Mon Sep 17 00:00:00 2001 From: DizzRL Date: Tue, 4 Feb 2025 12:18:29 -0500 Subject: [PATCH 3/5] Update main.yml --- .github/workflows/main.yml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 372a153..feea371 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -19,11 +19,6 @@ jobs: - name: Checkout uses: actions/checkout@v3 - - name: Environment Variables - run: | - export CFLAGS="-Wno-error" - export CXXFLAGS="-Wno-error" - - name: Install dependencies run: | sudo apt update From 03c3ad2afb80981823773d476455da53f273270c Mon Sep 17 00:00:00 2001 From: DizzRL Date: Tue, 4 Feb 2025 12:18:43 -0500 Subject: [PATCH 4/5] Update main.c --- source/main.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/source/main.c b/source/main.c index f74b8ae..2e3946b 100644 --- a/source/main.c +++ b/source/main.c @@ -10,6 +10,8 @@ #include "utils.h" #include #include +#include +#include static pid_t find_pid(const char* name) { @@ -65,4 +67,4 @@ int main() { scePthreadCreate(&broadcastThread, 0, (void*)broadcast_thread, 0, "broadcast_thread"); start_server(); return 0; -} \ No newline at end of file +} From cfa71f0afd8820d4f0d201e55d6ed9d08e069222 Mon Sep 17 00:00:00 2001 From: DizzRL Date: Tue, 4 Feb 2025 12:19:01 -0500 Subject: [PATCH 5/5] Update utils.c --- source/utils.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/utils.c b/source/utils.c index 45798f4..597da1f 100644 --- a/source/utils.c +++ b/source/utils.c @@ -3,6 +3,7 @@ #include #include #include +#include #include "utils.h" #include "libsce_defs.h" @@ -30,4 +31,4 @@ void printf_notification(const char* fmt, ...) { sceKernelSendNotificationRequest(0, &req, sizeof req, 0); klog_puts(req.message); -} \ No newline at end of file +}