Skip to content

Commit

Permalink
Rename DataType in ResCommon
Browse files Browse the repository at this point in the history
  • Loading branch information
MonsterDruide1 committed Aug 8, 2023
1 parent b8a039c commit 8d88aff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/common/aglResCommon.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ namespace agl {
// maybe first parameter is is_le, maybe it is big_endian - different between decomps
void ModifyEndianU32(bool is_le, void* p_data, size_t size);

template <typename _DataType>
template <typename DataType_>
class ResCommon {
public:
using DataType = _DataType;
using DataType = DataType_;

ResCommon() : mpData(nullptr) {}

Expand Down

0 comments on commit 8d88aff

Please sign in to comment.