> compile NEMU
221220000 张三 Linux zzy 5.15.146.1-microsoft-standard-WSL2 #1 SMP Thu Jan 11 04:09:03 UTC 2024 x86_64 x86_64 x86_64 GNU/Linux 20:59:33 up 7 days, 21:00, 1 user, load average: 0.97, 0.67, 0.46
This commit is contained in:
@ -20,7 +20,7 @@ int SDL_PollEvent(SDL_Event *ev) {
|
||||
int SDL_WaitEvent(SDL_Event *event) {
|
||||
char buf[64];
|
||||
while (NDL_PollEvent(buf, sizeof(buf)) == 0);
|
||||
printf("SDL_WaitEvent Recv %s\n", buf);
|
||||
printf("SDL_WaitEvent Recv %s", buf);
|
||||
if (buf[0] == 'k') {
|
||||
if (buf[1] == 'd') {
|
||||
event->type = SDL_KEYDOWN;
|
||||
@ -28,7 +28,7 @@ int SDL_WaitEvent(SDL_Event *event) {
|
||||
event->type = SDL_KEYUP;
|
||||
}
|
||||
for (int i = 0; i < sizeof(keyname) / sizeof(keyname[0]); i ++ ) {
|
||||
if (strcmp(buf + 3, keyname[i]) == 0) {
|
||||
if (strcmp(buf + 2, keyname[i]) == 0) {
|
||||
printf("SDL_WaitEvent Got %s\n", keyname[i]);
|
||||
event->key.keysym.sym = i;
|
||||
return 1;
|
||||
|
Reference in New Issue
Block a user