Skip to content

Commit

Permalink
Fix build issues
Browse files Browse the repository at this point in the history
  • Loading branch information
JaredWhiteOne committed Sep 9, 2024
1 parent f630376 commit 1a279f1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dolphin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
include:
- build_type: Test
artifact_name: windows-test
build_config: -G "Ninja" -DCMAKE_BUILD_TYPE="Release" -DCURL_LIBRARY="../curl-8.9.1_3-win64-mingw/lib" -DCURL_INCLUDE_DIR="../curl-8.9.1_3-win64-mingw/include"
build_config: -G "Ninja" -DCMAKE_BUILD_TYPE="Release" -DCURL_LIBRARY="../curl-8.9.1_3-win64-mingw/lib" -DCURL_INCLUDE_DIR="../curl-8.9.1_3-win64-mingw/include" -ENABLE_CLI_TOOL=false -DENABLE_HEADLESS=false
steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -132,7 +132,7 @@ jobs:
run: |
mkdir build
cd build
cmake .. -DLINUX_LOCAL_DEV=true -DCMAKE_PREFIX_PATH=./Externals/Qt/Qt6.5.1/x64/lib/cmake/
cmake .. -DLINUX_LOCAL_DEV=true -DCMAKE_PREFIX_PATH=./Externals/Qt/Qt6.5.1/x64/lib/cmake/ -ENABLE_CLI_TOOL=false -DENABLE_HEADLESS=false
- name: Build
run: |
Expand Down
2 changes: 1 addition & 1 deletion Source/Core/Core/HW/EXI/EXIBrawlback.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1186,7 +1186,7 @@ void CEXIBrawlback::handleStartMatch(u8* payload)
std::memcpy(&gameSettings, payload, sizeof(GameSettings));
}

#include <curl/curl.h>
#include "../../Externals/curl/curl/include/curl/curl.h"
#include <Common/MemoryUtil.h>

void swapGameReportEndian(GameReport& report)
Expand Down

0 comments on commit 1a279f1

Please sign in to comment.