Removed warnings when compiling CSFML in release mode
Changed samples images Added an effect to the post-fx sample git-svn-id: https://sfml.svn.sourceforge.net/svnroot/sfml/branches/sfml2@1008 4e206d99-4929-0410-ac5d-dfc041789085
This commit is contained in:
parent
771d9d7939
commit
88d48a0f71
15 changed files with 133 additions and 64 deletions
|
@ -95,10 +95,10 @@
|
|||
|
||||
#define CSFML_CALL_PTR(Object, Function) (Object->This->Function);
|
||||
|
||||
#define CSFML_CHECK_RETURN(Object, Default)
|
||||
#define CSFML_CHECK_RETURN(Object, Default) (void)Default;
|
||||
|
||||
#define CSFML_CALL_RETURN(Object, Function, Default) return (Object->This.Function);
|
||||
#define CSFML_CALL_RETURN(Object, Function, Default) (void)Default; return (Object->This.Function);
|
||||
|
||||
#define CSFML_CALL_PTR_RETURN(Object, Function, Default) return (Object->This->Function);
|
||||
#define CSFML_CALL_PTR_RETURN(Object, Function, Default) (void)Default; return (Object->This->Function);
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue