summaryrefslogtreecommitdiff
path: root/src/client.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2011-07-07 22:52:35 +0300
committerAndrei Karas <akaras@inbox.ru>2011-07-07 22:52:35 +0300
commit5e14ab971129eb95ca02e373fc21adb46c0eaca1 (patch)
tree5316f688c7f617776b7e70c9f64932fe7596cadb /src/client.cpp
parented950471f7ae02c4618fa995c305832f12dc9cd7 (diff)
downloadmv-5e14ab971129eb95ca02e373fc21adb46c0eaca1.tar.gz
mv-5e14ab971129eb95ca02e373fc21adb46c0eaca1.tar.bz2
mv-5e14ab971129eb95ca02e373fc21adb46c0eaca1.tar.xz
mv-5e14ab971129eb95ca02e373fc21adb46c0eaca1.zip
Remove undescore from variables and defines.
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;