aboutsummaryrefslogtreecommitdiff
path: root/platform/iphone/godot_iphone.cpp
diff options
context:
space:
mode:
authorRémi Verschelde2017-03-05 16:44:50 +0100
committerRémi Verschelde2017-03-05 16:44:50 +0100
commit5dbf1809c6e3e905b94b8764e99491e608122261 (patch)
tree5e5a5360db15d86d59ec8c6e4f7eb511388c5a9a /platform/iphone/godot_iphone.cpp
parent45438e9918d421b244bfd7776a30e67dc7f2d3e3 (diff)
downloadgodot-5dbf180.tar.gz
godot-5dbf180.tar.zst
godot-5dbf180.zip
A Whole New World (clang-format edition)
I can show you the code Pretty, with proper whitespace Tell me, coder, now when did You last write readable code? I can open your eyes Make you see your bad indent Force you to respect the style The core devs agreed upon A whole new world A new fantastic code format A de facto standard With some sugar Enforced with clang-format A whole new world A dazzling style we all dreamed of And when we read it through It's crystal clear That now we're in a whole new world of code
Diffstat (limited to 'platform/iphone/godot_iphone.cpp')
-rw-r--r--platform/iphone/godot_iphone.cpp37
1 files changed, 18 insertions, 19 deletions
diff --git a/platform/iphone/godot_iphone.cpp b/platform/iphone/godot_iphone.cpp
index 27804e5c0..626c78fdf 100644
--- a/platform/iphone/godot_iphone.cpp
+++ b/platform/iphone/godot_iphone.cpp
@@ -26,36 +26,36 @@
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
/*************************************************************************/
-#include "os_iphone.h"
#include "main/main.h"
+#include "os_iphone.h"
#include <stdio.h>
-#include <unistd.h>
#include <string.h>
+#include <unistd.h>
-static OSIPhone* os = NULL;
+static OSIPhone *os = NULL;
extern "C" {
-int add_path(int p_argc, char** p_args);
-int add_cmdline(int p_argc, char** p_args);
+int add_path(int p_argc, char **p_args);
+int add_cmdline(int p_argc, char **p_args);
};
-int iphone_main(int, int, int, char**);
+int iphone_main(int, int, int, char **);
-int iphone_main(int width, int height, int argc, char** argv) {
+int iphone_main(int width, int height, int argc, char **argv) {
int len = strlen(argv[0]);
- while (len--){
+ while (len--) {
if (argv[0][len] == '/') break;
}
- if (len>=0) {
- char path[512];
- memcpy(path, argv[0], len>sizeof(path)?sizeof(path):len);
- path[len]=0;
- printf("Path: %s\n", path);
- chdir(path);
+ if (len >= 0) {
+ char path[512];
+ memcpy(path, argv[0], len > sizeof(path) ? sizeof(path) : len);
+ path[len] = 0;
+ printf("Path: %s\n", path);
+ chdir(path);
}
printf("godot_iphone %s\n", argv[0]);
@@ -64,8 +64,8 @@ int iphone_main(int width, int height, int argc, char** argv) {
printf("cwd %s\n", cwd);
os = new OSIPhone(width, height);
- char* fargv[64];
- for (int i=0; i<argc; i++) {
+ char *fargv[64];
+ for (int i = 0; i < argc; i++) {
fargv[i] = argv[i];
};
fargv[argc] = NULL;
@@ -73,15 +73,14 @@ int iphone_main(int width, int height, int argc, char** argv) {
argc = add_cmdline(argc, fargv);
printf("os created\n");
- Error err = Main::setup(fargv[0], argc - 1, &fargv[1], false);
+ Error err = Main::setup(fargv[0], argc - 1, &fargv[1], false);
printf("setup %i\n", err);
- if (err!=OK)
+ if (err != OK)
return 255;
return 0;
};
-
void iphone_finish() {
printf("iphone_finish\n");