1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-04 13:42:55 +01:00

Remove unused semicolons after end of function

[ci skip]
This commit is contained in:
Michał Janiszewski
2016-11-09 10:05:03 +01:00
parent a934590826
commit 44e9129af5
2 changed files with 4 additions and 4 deletions

View File

@@ -210,9 +210,9 @@ void Mixer_Channel_SetGroup(void* channel, int group);
void* Mixer_Play_Music(int pathId, int loop, int streaming);
void Mixer_SetVolume(float volume);
static int DStoMixerVolume(int volume) { return (int)(SDL_MIX_MAXVOLUME * (SDL_pow(10, (float)volume / 2000))); };
static float DStoMixerPan(int pan) { return (((float)pan + -DSBPAN_LEFT) / DSBPAN_RIGHT) / 2; };
static double DStoMixerRate(int frequency) { return (double)frequency / 22050; };
static int DStoMixerVolume(int volume) { return (int)(SDL_MIX_MAXVOLUME * (SDL_pow(10, (float)volume / 2000))); }
static float DStoMixerPan(int pan) { return (((float)pan + -DSBPAN_LEFT) / DSBPAN_RIGHT) / 2; }
static double DStoMixerRate(int frequency) { return (double)frequency / 22050; }
#ifdef __cplusplus
}

View File

@@ -54,7 +54,7 @@ namespace Guard
Assert(argument >= min && argument <= max, message, args);
va_end(args);
}
};
}
#define GUARD_LINE "Location: %s:%d", __func__, __LINE__