Whitespace changed

This commit is contained in:
N0r1x 2016-07-30 15:45:37 +02:00
parent a97db39464
commit e2d4521a82

View File

@ -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) {