1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-16 14:00:40 +00:00

Bring that Whole New World to the Old Continent too

Applies the clang-format style to the 2.1 branch as done for master in
5dbf1809c6.
This commit is contained in:
Rémi Verschelde
2017-03-19 00:36:26 +01:00
parent 1d418afe86
commit f8db8a3faa
1308 changed files with 147754 additions and 174357 deletions

View File

@@ -46,19 +46,18 @@ conversion utilities
class CPTables {
public:
enum { OCTAVE = 12 };
enum { OCTAVE=12 };
static uint16_t old_period_table[OCTAVE*2];
static uint16_t old_period_table[OCTAVE * 2];
static uint16_t log_table[104];
static int32_t linear_period_to_freq_tab[768];
static int32_t get_old_period(uint16_t note,int32_t speed);
static int32_t get_amiga_period(uint16_t note,int32_t fine);
static int32_t get_linear_period(uint16_t note,int32_t fine);
static int32_t get_linear_frequency(int32_t period);
static int32_t get_old_period(uint16_t note, int32_t speed);
static int32_t get_amiga_period(uint16_t note, int32_t fine);
static int32_t get_linear_period(uint16_t note, int32_t fine);
static int32_t get_linear_frequency(int32_t period);
static int32_t get_old_frequency(int32_t period);
static int32_t get_log_period(uint16_t note,int32_t p_c5freq);
static int32_t get_log_period(uint16_t note, int32_t p_c5freq);
CPTables();
~CPTables();