From 7d60d32aee9ab6a06c2f05a2f7c9191f50711e7e Mon Sep 17 00:00:00 2001 From: uz Date: Tue, 8 Sep 2009 16:45:21 +0000 Subject: [PATCH] Changed the prototype of videomode() to take and return an unsigned instead of an unsigned char. git-svn-id: svn://svn.cc65.org/cc65/trunk@4134 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- include/c128.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/c128.h b/include/c128.h index 37a813f8c..47fbb26b1 100644 --- a/include/c128.h +++ b/include/c128.h @@ -102,7 +102,7 @@ -unsigned char __fastcall__ videomode (unsigned char Mode); +unsigned __fastcall__ videomode (unsigned Mode); /* Set the video mode, return the old mode. Call with one of the VIDEOMODE_xx * constants. */