mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-01-29 09:28:15 +03:00
Enforce semicolons after usage of WHINE_ONCE
For consistency.
Since WHINE_ONCE ends with a block, the only way to make the compiler
enforce it is to end it with a `do { } while (false)`.
This commit is contained in:
@@ -760,7 +760,7 @@ void Graphics::drawtile( int x, int y, int t )
|
|||||||
{
|
{
|
||||||
if (!INBOUNDS_VEC(t, tiles))
|
if (!INBOUNDS_VEC(t, tiles))
|
||||||
{
|
{
|
||||||
WHINE_ONCE("drawtile() out-of-bounds!")
|
WHINE_ONCE("drawtile() out-of-bounds!");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -784,7 +784,7 @@ void Graphics::drawtile2( int x, int y, int t )
|
|||||||
{
|
{
|
||||||
if (!INBOUNDS_VEC(t, tiles2))
|
if (!INBOUNDS_VEC(t, tiles2))
|
||||||
{
|
{
|
||||||
WHINE_ONCE("drawtile2() out-of-bounds!")
|
WHINE_ONCE("drawtile2() out-of-bounds!");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -810,7 +810,7 @@ void Graphics::drawtile3( int x, int y, int t, int off, int height_subtract /*=
|
|||||||
t += off * 30;
|
t += off * 30;
|
||||||
if (!INBOUNDS_VEC(t, tiles3))
|
if (!INBOUNDS_VEC(t, tiles3))
|
||||||
{
|
{
|
||||||
WHINE_ONCE("drawtile3() out-of-bounds!")
|
WHINE_ONCE("drawtile3() out-of-bounds!");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
SDL_Rect src_rect = { 0, 0, tiles_rect.w, tiles_rect.h - height_subtract };
|
SDL_Rect src_rect = { 0, 0, tiles_rect.w, tiles_rect.h - height_subtract };
|
||||||
@@ -822,7 +822,7 @@ void Graphics::drawtowertile( int x, int y, int t )
|
|||||||
{
|
{
|
||||||
if (!INBOUNDS_VEC(t, tiles2))
|
if (!INBOUNDS_VEC(t, tiles2))
|
||||||
{
|
{
|
||||||
WHINE_ONCE("drawtowertile() out-of-bounds!")
|
WHINE_ONCE("drawtowertile() out-of-bounds!");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
x += 8;
|
x += 8;
|
||||||
@@ -837,7 +837,7 @@ void Graphics::drawtowertile3( int x, int y, int t, TowerBG& bg_obj )
|
|||||||
t += bg_obj.colstate*30;
|
t += bg_obj.colstate*30;
|
||||||
if (!INBOUNDS_VEC(t, tiles3))
|
if (!INBOUNDS_VEC(t, tiles3))
|
||||||
{
|
{
|
||||||
WHINE_ONCE("drawtowertile3() out-of-bounds!")
|
WHINE_ONCE("drawtowertile3() out-of-bounds!");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
x += 8;
|
x += 8;
|
||||||
@@ -3286,7 +3286,7 @@ void Graphics::drawforetile(int x, int y, int t)
|
|||||||
{
|
{
|
||||||
if (!INBOUNDS_VEC(t, tiles))
|
if (!INBOUNDS_VEC(t, tiles))
|
||||||
{
|
{
|
||||||
WHINE_ONCE("drawforetile() out-of-bounds!")
|
WHINE_ONCE("drawforetile() out-of-bounds!");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -3310,7 +3310,7 @@ void Graphics::drawforetile2(int x, int y, int t)
|
|||||||
{
|
{
|
||||||
if (!INBOUNDS_VEC(t, tiles2))
|
if (!INBOUNDS_VEC(t, tiles2))
|
||||||
{
|
{
|
||||||
WHINE_ONCE("drawforetile2() out-of-bounds!")
|
WHINE_ONCE("drawforetile2() out-of-bounds!");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -3335,7 +3335,7 @@ void Graphics::drawforetile3(int x, int y, int t, int off)
|
|||||||
t += off * 30;
|
t += off * 30;
|
||||||
if (!INBOUNDS_VEC(t, tiles3))
|
if (!INBOUNDS_VEC(t, tiles3))
|
||||||
{
|
{
|
||||||
WHINE_ONCE("drawforetile3() out-of-bounds!")
|
WHINE_ONCE("drawforetile3() out-of-bounds!");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
SDL_Rect rect;
|
SDL_Rect rect;
|
||||||
|
|||||||
@@ -43,7 +43,8 @@ void VVV_fillstring(
|
|||||||
{ \
|
{ \
|
||||||
whine = false; \
|
whine = false; \
|
||||||
puts(message); \
|
puts(message); \
|
||||||
}
|
} \
|
||||||
|
do { } while (false)
|
||||||
|
|
||||||
/* Don't call this directly; use the VVV_between macro. */
|
/* Don't call this directly; use the VVV_between macro. */
|
||||||
void _VVV_between(
|
void _VVV_between(
|
||||||
|
|||||||
Reference in New Issue
Block a user