ports/graphics/flasm/files/patch-unflasm.c
Emanuel Haupt 21fb94e2a9 - Support staging
- Respect CC and hence fix build with clang
- Respect CFLAGS
2014-03-18 07:46:07 +00:00

34 lines
699 B
C

--- ./unflasm.c.orig 2014-03-18 08:44:06.055828097 +0100
+++ ./unflasm.c 2014-03-18 08:44:06.060828422 +0100
@@ -1012,29 +1012,11 @@
}
case SWFACTION_SETTARGET:
- {
- if (targetIndent == 1) {
- --indent;
- print("end\n");
- targetIndent = 0;
- }
- if (strlen((char *) p) > 0) {
- print("setTarget '%s'\n", p);
- ++indent;
- targetIndent = 1;
- }
- break;
- }
+ print("setTarget '%s'\n", p);
+ break;
case SWFACTION_SETTARGETEXPRESSION:
- if (targetIndent == 1) {
- --indent;
- print("end\n");
- targetIndent = 0;
- }
print("setTargetExpr\n");
- ++indent;
- targetIndent = 1;
break;
case SWFACTION_GOTOLABEL: