mirror of
https://github.com/citra-emu/citra.git
synced 2024-11-28 20:30:04 +00:00
Whitespace changed
This commit is contained in:
parent
a97db39464
commit
e2d4521a82
@ -12,15 +12,15 @@
|
||||
#include "video_core/video_core.h"
|
||||
|
||||
void EmuWindow::ButtonPressed(Service::HID::PadState pad) {
|
||||
Service::HID::PadState temp=pad_state.load();
|
||||
temp.hex |= pad.hex;
|
||||
pad_state.store(temp);
|
||||
Service::HID::PadState temp=pad_state.load();
|
||||
temp.hex |= pad.hex;
|
||||
pad_state.store(temp);
|
||||
}
|
||||
|
||||
void EmuWindow::ButtonReleased(Service::HID::PadState pad) {
|
||||
Service::HID::PadState temp=pad_state.load();
|
||||
temp.hex &= ~pad.hex;
|
||||
pad_state.store(temp);
|
||||
Service::HID::PadState temp=pad_state.load();
|
||||
temp.hex &= ~pad.hex;
|
||||
pad_state.store(temp);
|
||||
}
|
||||
|
||||
void EmuWindow::CirclePadUpdated(float x, float y) {
|
||||
|
Loading…
Reference in New Issue
Block a user