Don't right-align escaped newlines, e.g. for #define. This has previously led to long diffs in the commit history.
This commit is contained in:
parent
f4f0679a2d
commit
c5df0cb82b
144 changed files with 4519 additions and 4519 deletions
|
|
@ -2339,11 +2339,11 @@ Error Main::setup(const char *execpath, int argc, char *argv[], bool p_second_ph
|
|||
|
||||
Array force_angle_list;
|
||||
|
||||
#define FORCE_ANGLE(m_vendor, m_name) \
|
||||
{ \
|
||||
Dictionary device; \
|
||||
device["vendor"] = m_vendor; \
|
||||
device["name"] = m_name; \
|
||||
#define FORCE_ANGLE(m_vendor, m_name) \
|
||||
{ \
|
||||
Dictionary device; \
|
||||
device["vendor"] = m_vendor; \
|
||||
device["name"] = m_name; \
|
||||
force_angle_list.push_back(device); \
|
||||
}
|
||||
|
||||
|
|
|
|||
20
main/main.h
20
main/main.h
|
|
@ -88,18 +88,18 @@ public:
|
|||
};
|
||||
|
||||
// Test main override is for the testing behavior.
|
||||
#define TEST_MAIN_OVERRIDE \
|
||||
bool run_test = false; \
|
||||
#define TEST_MAIN_OVERRIDE \
|
||||
bool run_test = false; \
|
||||
int return_code = Main::test_entrypoint(argc, argv, run_test); \
|
||||
if (run_test) { \
|
||||
godot_cleanup_profiler(); \
|
||||
return return_code; \
|
||||
if (run_test) { \
|
||||
godot_cleanup_profiler(); \
|
||||
return return_code; \
|
||||
}
|
||||
|
||||
#define TEST_MAIN_PARAM_OVERRIDE(argc, argv) \
|
||||
bool run_test = false; \
|
||||
#define TEST_MAIN_PARAM_OVERRIDE(argc, argv) \
|
||||
bool run_test = false; \
|
||||
int return_code = Main::test_entrypoint(argc, argv, run_test); \
|
||||
if (run_test) { \
|
||||
godot_cleanup_profiler(); \
|
||||
return return_code; \
|
||||
if (run_test) { \
|
||||
godot_cleanup_profiler(); \
|
||||
return return_code; \
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue