Mercurial > sdl-ios-xcode
comparison src/video/Xext/XME/xme.c @ 2063:dea73e1d07b0
Merged Ryan's fix, in case we need it later.
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Sun, 29 Oct 2006 14:45:46 +0000 |
parents | c121d94672cb |
children | 81dde1b00bf1 |
comparison
equal
deleted
inserted
replaced
2062:c9aa6bcb26f3 | 2063:dea73e1d07b0 |
---|---|
406 SyncHandle(); | 406 SyncHandle(); |
407 | 407 |
408 return (rep.success ? xTrue : xFalse); | 408 return (rep.success ? xTrue : xFalse); |
409 } | 409 } |
410 | 410 |
411 /* SDL addition from Ryan: free memory used by xme. */ | |
412 void | |
413 XiGMiscDestroy(void) | |
414 { | |
415 if (xigmisc_info) { | |
416 XextDestroyExtension(xigmisc_info); | |
417 xigmisc_info = NULL; | |
418 } | |
419 } | |
420 | |
411 /* vi: set ts=4 sw=4 expandtab: */ | 421 /* vi: set ts=4 sw=4 expandtab: */ |