[INTERPRETER]

* BUG: Fix a compilation warning on 32 bits systems.

[GB.SDL]
* BUG: Fix a function that was not returning any value.


git-svn-id: svn://localhost/gambas/trunk@3239 867c0c6c-44f3-4631-809d-bfa615b0a4ec
This commit is contained in:
Benoît Minisini 2010-09-24 13:52:23 +00:00
parent ab132742d6
commit bddbc3a62a
2 changed files with 2 additions and 1 deletions

View file

@ -253,6 +253,7 @@ void SDLfont::SetFontStrikeout(bool state)
bool SDLfont::IsFontStrikeout(void )
{
// return (TTF_GetFontStyle(hSDLfont) & TTF_STYLE_STRIKETHROUGH);
return false;
}
void SDLfont::SetFontUnderline(bool state)

View file

@ -34,7 +34,7 @@ void SWAP_double(double *val);
#if OS_64BITS
#define SWAP_pointer(_val) SWAP_int64(_val)
#else
#define SWAP_pointer(_val) SWAP_int(_val)
#define SWAP_pointer(_val) SWAP_int(((int *)(void *)_val))
#endif
#endif