File tree Expand file tree Collapse file tree 2 files changed +21
-1
lines changed Expand file tree Collapse file tree 2 files changed +21
-1
lines changed Original file line number Diff line number Diff line change @@ -75,10 +75,15 @@ dplcs([
75
75
asm ( ( { addScript, importScript } ) => {
76
76
addScript ( `
77
77
SonicMappingsVer := 1
78
- SonicDplcVer = 1
78
+ SonicDplcVer : = 1
79
79
` ) ;
80
80
importScript ( 'MapMacros.asm' ) ;
81
81
82
+ /**
83
+ * MapMacros Mapping output
84
+ *
85
+ * delete this function to output raw data instead
86
+ */
82
87
writeMappings ( ( { label, sprites, renderHex } ) => {
83
88
const list = [ ] ;
84
89
@@ -116,6 +121,11 @@ SonicDplcVer = 1
116
121
return list . join ( '\n' ) ;
117
122
} ) ;
118
123
124
+ /**
125
+ * MapMacros DPLC output
126
+ *
127
+ * delete this function to output raw data instead
128
+ */
119
129
writeDPLCs ( ( { label, sprites, renderHex } ) => {
120
130
const list = [ ] ;
121
131
Original file line number Diff line number Diff line change @@ -90,6 +90,11 @@ SonicDplcVer = 2
90
90
` ) ;
91
91
importScript ( 'MapMacros.asm' ) ;
92
92
93
+ /**
94
+ * MapMacros Mapping output
95
+ *
96
+ * delete this function to output raw data instead
97
+ */
93
98
writeMappings ( ( { label, sprites, renderHex } ) => {
94
99
const list = [ ] ;
95
100
@@ -127,6 +132,11 @@ SonicDplcVer = 2
127
132
return list . join ( '\n' ) ;
128
133
} ) ;
129
134
135
+ /**
136
+ * MapMacros DPLC output
137
+ *
138
+ * delete this function to output raw data instead
139
+ */
130
140
writeDPLCs ( ( { label, sprites, renderHex } ) => {
131
141
const list = [ ] ;
132
142
You can’t perform that action at this time.
0 commit comments