Also escape characters >=0x80 within the wineregistry savefile.

diff --git a/misc/registry.c b/misc/registry.c
index 7d1183a..fc3fd31 100644
--- a/misc/registry.c
+++ b/misc/registry.c
@@ -647,7 +647,7 @@
 	s=wstr;
 	while (*s) {
 		doescape=0;
-		if (*s>0xff)
+		if (*s>0x7f)
 			doescape = 1;
 		if (*s=='\n')
 			doescape = 1;