summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndre Weissflog <floooh@gmail.com>2020-02-28 14:03:35 +0100
committerGitHub <noreply@github.com>2020-02-28 14:03:35 +0100
commit28fe6bb9702fc0b3eaef49cd42dbe7f31a08cacb (patch)
tree5ab48ba268651c632a45186692da7bf7ce4a897c
parent9ac75b766a347981b35ab04fc930a85551d69536 (diff)
parent4939940a3a4128894f28642842bd1e1d8f5a6e1f (diff)
Merge pull request #269 from caiiiycuk/patch-1
sokol_app.h should be included before sokol_gfx.h
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index db95daf8..571b336e 100644
--- a/README.md
+++ b/README.md
@@ -168,8 +168,8 @@ separate sokol.c/.m implementation file which is necessary
to split the Objective-C code from the C code of the sample):
```cpp
-#include "sokol_gfx.h"
#include "sokol_app.h"
+#include "sokol_gfx.h"
sg_pass_action pass_action;