Enable actions on AngledLighting branch

This commit is contained in:
UnknownShadow200 2024-07-11 18:58:03 +10:00
parent 70e3a0e322
commit a94570e593
5 changed files with 7 additions and 3 deletions

View File

@ -6,6 +6,7 @@ on:
- main - main
- master - master
- ModernLighting - ModernLighting
- AngledLighting
workflow_dispatch: workflow_dispatch:
concurrency: concurrency:
@ -119,4 +120,4 @@ jobs:
if: ${{ always() && steps.compile.outcome == 'success' }} if: ${{ always() && steps.compile.outcome == 'success' }}
with: with:
DESTINATION_URL: '${{ secrets.NOTIFY_URL }}' DESTINATION_URL: '${{ secrets.NOTIFY_URL }}'
WORKFLOW_NAME: 'linux64' WORKFLOW_NAME: 'linux64'

View File

@ -5,6 +5,7 @@ on:
branches: branches:
- main - main
- master - master
- AngledLighting
workflow_dispatch: workflow_dispatch:

View File

@ -6,6 +6,7 @@ on:
- main - main
- master - master
- ModernLighting - ModernLighting
- AngledLighting
workflow_dispatch: workflow_dispatch:
concurrency: concurrency:
@ -133,4 +134,4 @@ jobs:
if: ${{ always() && steps.compile.outcome == 'success' }} if: ${{ always() && steps.compile.outcome == 'success' }}
with: with:
DESTINATION_URL: '${{ secrets.NOTIFY_URL }}' DESTINATION_URL: '${{ secrets.NOTIFY_URL }}'
WORKFLOW_NAME: 'win64' WORKFLOW_NAME: 'win64'

View File

@ -420,7 +420,7 @@ static void ProcessWPADInput(int i, float delta) {
if (res) return; if (res) return;
WPADData* wd = WPAD_Data(i); WPADData* wd = WPAD_Data(i);
u32 mods = wd->btn_h | wd->btn_d; // buttons held | buttons down now u32 mods = wd->btns_h | wd->btns_d; // buttons held | buttons down now
int port = Gamepad_MapPort(i + 20); int port = Gamepad_MapPort(i + 20);
if (type == WPAD_EXP_CLASSIC) { if (type == WPAD_EXP_CLASSIC) {

View File

@ -12,6 +12,7 @@ extern "C" {
#include "ExtMath.h" #include "ExtMath.h"
#include "Graphics.h" #include "Graphics.h"
#include "Launcher.h" #include "Launcher.h"
#include "LBackend.h"
} }
#include <coreinit/memheap.h> #include <coreinit/memheap.h>
#include <coreinit/cache.h> #include <coreinit/cache.h>