Skip to content

Commit 1ed2eb1

Browse files
authored
Merge pull request #127 from NormanTUD/main
Fixed some typos
2 parents f3923bf + 388a55e commit 1ed2eb1

3 files changed

Lines changed: 10 additions & 10 deletions

File tree

actions.c

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -323,16 +323,16 @@ void install_infobox(HWND hwnd, const char *name)
323323
{
324324
sprintf(msg_buffer,
325325
"Setup will install now %s\n\n"
326-
"Afrer instalation reboot is recomended.\n\n"
327-
"WARNING: your system have \"CPU speed bug\", update system component sometimes overwrite patched files!"
328-
"Make sure you have Patcher9x boot floppy, if the system fail boot afrer update.\n\n"
326+
"After installation reboot is recommended.\n\n"
327+
"WARNING: Your system has \"CPU speed bug\", update system component sometimes overwrite patched files!"
328+
"Make sure you have Patcher9x boot floppy, if the system fail boot after update.\n\n"
329329
"After reboot, please run SOFTGPU setup again!", name);
330330
MessageBoxA(hwnd, msg_buffer, name, MB_ICONWARNING);
331331
}
332332
else
333333
#endif
334334
{
335-
sprintf(msg_buffer, "Setup will now install %s\n\nAfrer instalation reboot is recomended.\n\nAfter reboot, please run SOFTGPU setup again!", name);
335+
sprintf(msg_buffer, "Setup will now install %s\n\nAfter installation reboot is recommended.\n\nAfter reboot, please run SOFTGPU setup again!", name);
336336
MessageBoxA(hwnd, msg_buffer, name, MB_ICONINFORMATION);
337337
}
338338

@@ -353,9 +353,9 @@ BOOL dotcom_start(HWND hwnd)
353353
BOOL ws2_start(HWND hwnd)
354354
{
355355
int r = MessageBoxA(hwnd, "Setup will now install Winsock 2 update, before continue is required to have TCP/IP enabled. Process to installation or exit to configure interface?\n\n"
356-
"Yes = start the instalation\n"
356+
"Yes = start the installation\n"
357357
"No = exit SoftGPU installer\n\n"
358-
"Reboot is required after installation.", "WS2 instalation", MB_YESNO | MB_ICONQUESTION);
358+
"Reboot is required after installation.", "WS2 installation", MB_YESNO | MB_ICONQUESTION);
359359

360360
if(r == IDYES)
361361
{
@@ -439,7 +439,7 @@ BOOL driver_copy(HWND hwnd)
439439
}
440440
else
441441
{
442-
sprintf(mgsbuf, "Automatic instalation isn't possible, because it is unsupported on this system. You have to install driver manually!\n\nDriver files are located here: %s", install_path);
442+
sprintf(mgsbuf, "Automatic installation isn't possible, because it is unsupported on this system. You have to install driver manually!\n\nDriver files are located here: %s", install_path);
443443
MessageBoxA(hwnd, mgsbuf, "No automatic driver install", MB_ICONWARNING);
444444
}
445445

gpudetect.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ const char msg_nt[] =
4040
"Your system is NT! "
4141
"This driver is only for Windows 9x = 95, 98 and Me! "
4242
"Setup can preset the driver on this system but you've to copy "
43-
"these files and install on 9x system manualy.";
43+
"these files and install on 9x system manually.";
4444

4545
const char msg_95[] =
4646
"In Windows 95 isn't available automatic installation. "
@@ -55,7 +55,7 @@ const char msg_unknown[] =
5555
"install the driver manualy if you sure, that match to your device.";
5656

5757
const char msg_nogpu[] =
58-
"No video detected, please make sure, that at last Microsoft generic driver (640x480, 4bpp) is instaled!";
58+
"No video detected, please make sure, that at last Microsoft generic driver (640x480, 4bpp) is installed!";
5959

6060
const char msg_win95[] =
6161
"Automatic installation isn't possible on Windows 95. Installer preset driver, but you have to install it manualy via Device Manager. "

windrv.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -610,7 +610,7 @@ BOOL installVideoDriver(const char *szDriverDir, const char *infName)
610610

611611
if(driverSection == NULL)
612612
{
613-
REPORT("No supported VGA adapter found! (It could happen if PCI bus isn't detected or is missdetect, for example Win9X in QEMU do this, more informations in README)");
613+
REPORT("No supported VGA adapter found! (It could happen if PCI bus isn't detected or is misdetected, for example Win9X in QEMU do this, more informations in README)");
614614
return FALSE;
615615
}
616616

0 commit comments

Comments
 (0)