mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-04-20 19:44:46 +00:00
submodules updates and fixes for latest SDL
This commit is contained in:
parent
ef3c8cf282
commit
60ca89a856
8 changed files with 8 additions and 8 deletions
2
externals/cryptopp
vendored
2
externals/cryptopp
vendored
|
@ -1 +1 @@
|
|||
Subproject commit 9bb6680cfaedd3d46eff082ede8d0c76be6a2145
|
||||
Subproject commit 60f81a77e0c9a0e7ffc1ca1bc438ddfa2e43b78e
|
2
externals/fmt
vendored
2
externals/fmt
vendored
|
@ -1 +1 @@
|
|||
Subproject commit 18a325f370ffd5ec1eda0087d2efc3dc9b3faf56
|
||||
Subproject commit bbf44cc000531dc7737d5321ccfa9f2f11b20127
|
2
externals/glslang
vendored
2
externals/glslang
vendored
|
@ -1 +1 @@
|
|||
Subproject commit 2d8b71fc63578a93726c05e0565c3ef064bdc1ba
|
||||
Subproject commit ea087ff90d03947307cfe52500b74551aa35d34d
|
2
externals/sdl3
vendored
2
externals/sdl3
vendored
|
@ -1 +1 @@
|
|||
Subproject commit 4fc68a48f20574326eb18022eed0b7c0fa52a10e
|
||||
Subproject commit a4f962fd46b5b0b4ed9d5eb1e40a203cc0e5f422
|
2
externals/vma
vendored
2
externals/vma
vendored
|
@ -1 +1 @@
|
|||
Subproject commit 7942b798289f752dc23b0a79516fd8545febd718
|
||||
Subproject commit feb11e172715011ef2a7b3b6c7c8737337b34181
|
2
externals/zlib-ng
vendored
2
externals/zlib-ng
vendored
|
@ -1 +1 @@
|
|||
Subproject commit 2e3e5f30a05ee7b113c755ad9a075304e02bc328
|
||||
Subproject commit 80514c17b384df68fbe83cca69ece0521b85f708
|
|
@ -78,7 +78,7 @@ int SDLAudio::AudioOutOpen(int type, u32 samples_num, u32 freq,
|
|||
fmt.channels = port.channels_num;
|
||||
fmt.freq = 48000;
|
||||
port.stream =
|
||||
SDL_OpenAudioDeviceStream(SDL_AUDIO_DEVICE_DEFAULT_OUTPUT, &fmt, NULL, NULL);
|
||||
SDL_OpenAudioDeviceStream(SDL_AUDIO_DEVICE_DEFAULT_PLAYBACK, &fmt, NULL, NULL);
|
||||
SDL_ResumeAudioDevice(SDL_GetAudioStreamDevice(port.stream));
|
||||
return id + 1;
|
||||
}
|
||||
|
|
|
@ -102,7 +102,7 @@ void WindowSDL::onKeyPress(const SDL_Event* event) {
|
|||
Input::Axis axis = Input::Axis::AxisMax;
|
||||
int axisvalue = 0;
|
||||
int ax = 0;
|
||||
switch (event->key.keysym.sym) {
|
||||
switch (event->key.key) {
|
||||
case SDLK_UP:
|
||||
button = OrbisPadButtonDataOffset::ORBIS_PAD_BUTTON_UP;
|
||||
break;
|
||||
|
|
Loading…
Add table
Reference in a new issue