From 1e6e7727c6664ab689c14ca1b47903439ddcc6db Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Sat, 13 Apr 2013 20:43:32 -0400 Subject: [PATCH] Added a data2 field to the SDL_RWops::hidden::unknown. This shouldn't change the ABI, since this struct had space left in the union. --- include/SDL_rwops.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/SDL_rwops.h b/include/SDL_rwops.h index 61c30920e..acc499ffb 100644 --- a/include/SDL_rwops.h +++ b/include/SDL_rwops.h @@ -138,6 +138,7 @@ typedef struct SDL_RWops struct { void *data1; + int data2; } unknown; } hidden;