comparison src/SDL.c @ 4419:5e7e1f1a4056

Changed revision details to be a string (an hg changeset) instead of an int.
author Ryan C. Gordon <icculus@icculus.org>
date Sun, 28 Feb 2010 02:07:40 -0500
parents f7b03b6838cb
children 791b3256fb22
comparison
equal deleted inserted replaced
4418:be1929ccaa3d 4419:5e7e1f1a4056
269 { 269 {
270 SDL_VERSION(ver); 270 SDL_VERSION(ver);
271 } 271 }
272 272
273 /* Get the library source revision */ 273 /* Get the library source revision */
274 int 274 const char *
275 SDL_GetRevision(void) 275 SDL_GetRevision(void)
276 { 276 {
277 return SDL_REVISION; 277 return SDL_REVISION;
278 } 278 }
279 279