File tree Expand file tree Collapse file tree 3 files changed +11
-0
lines changed Expand file tree Collapse file tree 3 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -88,3 +88,8 @@ const void *W_LockLumpNum(int lump)
88
88
{
89
89
return W_LumpByNum (lump );
90
90
}
91
+
92
+ void * W_GetModifiableLumpData (int lump )
93
+ {
94
+ return lump_data [lump ];
95
+ }
Original file line number Diff line number Diff line change @@ -260,3 +260,8 @@ const void* W_LockLumpNum(int lump)
260
260
261
261
return lump_data [lump ];
262
262
}
263
+
264
+ void * W_GetModifiableLumpData (int lump )
265
+ {
266
+ return lump_data [lump ];
267
+ }
Original file line number Diff line number Diff line change @@ -164,6 +164,7 @@ char* W_ReadLumpToString (int lump);
164
164
const void * W_SafeLumpByNum (int lump );
165
165
const void * W_LumpByNum (int lump );
166
166
const void * W_LockLumpNum (int lump );
167
+ void * W_GetModifiableLumpData (int lump );
167
168
168
169
int W_LumpNumExists (int lump );
169
170
int W_LumpNameExists (const char * name );
You can’t perform that action at this time.
0 commit comments