Commit 3369b0163f2a62e88b04e45d6ce78328bdf76611

Hubert Maier 2022-10-30T08:43:04

SDL_PS2_MAIN.C: Correct spelling mistake untill -> until

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/src/main/ps2/SDL_ps2_main.c b/src/main/ps2/SDL_ps2_main.c
index 77ec4c5..6d5c43a 100644
--- a/src/main/ps2/SDL_ps2_main.c
+++ b/src/main/ps2/SDL_ps2_main.c
@@ -59,7 +59,7 @@ static void waitUntilDeviceIsReady(char *path)
 
     while(ret != 0 && retries > 0) {
         ret = stat(path, &buffer);
-        /* Wait untill the device is ready */
+        /* Wait until the device is ready */
         nopdelay();
 
         retries--;