summaryrefslogtreecommitdiff
path: root/src/client.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/client.cpp')
-rw-r--r--src/client.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/client.cpp b/src/client.cpp
index 7d8ae90b6..f20c08c30 100644
--- a/src/client.cpp
+++ b/src/client.cpp
@@ -144,8 +144,8 @@ Graphics *graphics;
Sound sound;
-Uint32 nextTick(Uint32 interval, void *param _UNUSED_);
-Uint32 nextSecond(Uint32 interval, void *param _UNUSED_);
+Uint32 nextTick(Uint32 interval, void *param A_UNUSED);
+Uint32 nextSecond(Uint32 interval, void *param A_UNUSED);
void ErrorListener::action(const gcn::ActionEvent &)
{
@@ -168,7 +168,7 @@ int textures_count = 0;
* Called every 10 milliseconds by SDL_AddTimer()
* @see MILLISECONDS_IN_A_TICK value
*/
-Uint32 nextTick(Uint32 interval, void *param _UNUSED_)
+Uint32 nextTick(Uint32 interval, void *param A_UNUSED)
{
tick_time++;
if (tick_time == MAX_TICK_VALUE)
@@ -180,7 +180,7 @@ Uint32 nextTick(Uint32 interval, void *param _UNUSED_)
* Updates fps.
* Called every seconds by SDL_AddTimer()
*/
-Uint32 nextSecond(Uint32 interval, void *param _UNUSED_)
+Uint32 nextSecond(Uint32 interval, void *param A_UNUSED)
{
fps = frame_count;
frame_count = 0;