From 0211b09284600688b5e4958b9d8ad575fd53b969 Mon Sep 17 00:00:00 2001 From: thorpej Date: Sat, 19 Apr 1997 07:35:33 +0000 Subject: [PATCH] Change the riggings to ints, so that comparisons against negative values works as expected on systems with unsigned chars. --- games/sail/extern.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/games/sail/extern.h b/games/sail/extern.h index 6d9a7703b59e..6774867d4157 100644 --- a/games/sail/extern.h +++ b/games/sail/extern.h @@ -1,4 +1,4 @@ -/* $NetBSD: extern.h,v 1.2 1997/01/07 12:42:17 tls Exp $ */ +/* $NetBSD: extern.h,v 1.3 1997/04/19 07:35:33 thorpej Exp $ */ /* * Copyright (c) 1983, 1993 @@ -249,10 +249,10 @@ struct shipspecs { char gunR; char carL; char carR; - char rig1; - char rig2; - char rig3; - char rig4; + int rig1; + int rig2; + int rig3; + int rig4; short pts; }; struct shipspecs specs[];