mirror of
https://github.com/cavv-dev/Kekatsu-DS.git
synced 2025-06-18 08:45:33 -04:00
13 lines
148 B
C
13 lines
148 B
C
#include "input.h"
|
|
|
|
u32 pressed;
|
|
touchPosition touch;
|
|
|
|
void updateInput(void)
|
|
{
|
|
scanKeys();
|
|
pressed = keysDown();
|
|
|
|
touchRead(&touch);
|
|
}
|