From 5e14ab971129eb95ca02e373fc21adb46c0eaca1 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Thu, 7 Jul 2011 22:52:35 +0300 Subject: Remove undescore from variables and defines. --- src/client.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/client.cpp') 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; -- cgit v1.2.3-70-g09d2