changeset 5146:b52793134276

Renumbered the renderer flags
author Sam Lantinga <slouken@libsdl.org>
date Tue, 01 Feb 2011 12:44:52 -0800
parents c8e049de174c
children a1345acf7b3d
files include/SDL_video.h
diffstat 1 files changed, 3 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/include/SDL_video.h	Tue Feb 01 12:19:46 2011 -0800
+++ b/include/SDL_video.h	Tue Feb 01 12:44:52 2011 -0800
@@ -151,11 +151,10 @@
  */
 typedef enum
 {
-    SDL_RENDERER_PRESENTVSYNC = 0x00000020,     /**< Present is synchronized 
+    SDL_RENDERER_ACCELERATED = 0x00000001,      /**< The renderer uses hardware 
+                                                     acceleration */
+    SDL_RENDERER_PRESENTVSYNC = 0x00000002      /**< Present is synchronized 
                                                      with the refresh rate */
-    
-    SDL_RENDERER_ACCELERATED = 0x00000040       /**< The renderer uses hardware 
-                                                     acceleration */
 } SDL_RendererFlags;
 
 /**