From 10fcf368c7051dbfa28a1f2e1270024fe60db5aa Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Fri, 30 Jan 2009 01:40:44 +0000 Subject: [PATCH] Corrected documentation for SDL_rwops::read() --HG-- branch : SDL-1.2 extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/branches/SDL-1.2%403515 --- include/SDL_rwops.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/SDL_rwops.h b/include/SDL_rwops.h index 88721e79a..d4d0d288e 100644 --- a/include/SDL_rwops.h +++ b/include/SDL_rwops.h @@ -45,7 +45,7 @@ typedef struct SDL_RWops { */ int (SDLCALL *seek)(struct SDL_RWops *context, int offset, int whence); - /* Read up to 'num' objects each of size 'objsize' from the data + /* Read up to 'maxnum' objects each of size 'size' from the data source to the area pointed at by 'ptr'. Returns the number of objects read, or -1 if the read failed. */