diff options
Diffstat (limited to 'src/osd/sdl/drawogl.c')
-rw-r--r-- | src/osd/sdl/drawogl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/osd/sdl/drawogl.c b/src/osd/sdl/drawogl.c index f34f8732959..734c2b0b8ff 100644 --- a/src/osd/sdl/drawogl.c +++ b/src/osd/sdl/drawogl.c @@ -160,14 +160,14 @@ enum // TYPES //============================================================ -typedef struct _texture_info texture_info; +struct texture_info; #if USE_OPENGL typedef void (*texture_copy_func)(texture_info *texture, const render_texinfo *texsource); #endif /* texture_info holds information about a texture */ -struct _texture_info +struct texture_info { #ifdef OLD_CODE texture_info * next; // next texture in the list |