From c865461ef8c54d7825f1a8907942461840a626c5 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. --HG-- extra : rebase_source : 773ba0aa2ed9242d2259ed63384d23b98c33376a --- 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;