From 7ed3813dc481bbace0259a794772b14676fbeeae Mon Sep 17 00:00:00 2001 From: TomW Date: Sat, 22 Aug 2015 11:01:04 +0100 Subject: [PATCH] Fixed error text in HD config dialog. --- src/win-hdconf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/win-hdconf.c b/src/win-hdconf.c index fa65e09..10cace9 100644 --- a/src/win-hdconf.c +++ b/src/win-hdconf.c @@ -70,7 +70,7 @@ static BOOL CALLBACK hdnew_dlgproc(HWND hdlg, UINT message, WPARAM wParam, LPARA } if (hd_new_hpc > 16) { - MessageBox(ghwnd, "Drive has too many heads (maximum is 128)", "PCem error", MB_OK); + MessageBox(ghwnd, "Drive has too many heads (maximum is 16)", "PCem error", MB_OK); return TRUE; } if (hd_new_cyl > 16383) @@ -172,7 +172,7 @@ BOOL CALLBACK hdsize_dlgproc(HWND hdlg, UINT message, WPARAM wParam, LPARAM lPar } if (hd_new_hpc > 16) { - MessageBox(ghwnd,"Drive has too many heads (maximum is 128)","PCem error",MB_OK); + MessageBox(ghwnd,"Drive has too many heads (maximum is 16)","PCem error",MB_OK); return TRUE; } if (hd_new_cyl > 16383)