[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:
parent
ab132742d6
commit
bddbc3a62a
2 changed files with 2 additions and 1 deletions
|
@ -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)
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue