mirror of
https://github.com/ClassiCube/ClassiCube.git
synced 2025-09-11 00:26:28 -04:00
Enable actions on AngledLighting branch
This commit is contained in:
parent
70e3a0e322
commit
a94570e593
3
.github/workflows/build_linux.yml
vendored
3
.github/workflows/build_linux.yml
vendored
@ -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'
|
||||||
|
1
.github/workflows/build_mac64.yml
vendored
1
.github/workflows/build_mac64.yml
vendored
@ -5,6 +5,7 @@ on:
|
|||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
- master
|
- master
|
||||||
|
- AngledLighting
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
|
|
||||||
|
3
.github/workflows/build_windows.yml
vendored
3
.github/workflows/build_windows.yml
vendored
@ -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'
|
||||||
|
@ -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) {
|
||||||
|
@ -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>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user