mirror of
https://github.com/Atmosphere-NX/hac2l.git
synced 2025-08-07 07:59:28 +02:00
hac2l: fix build errors with latest libstratosphere
This commit is contained in:
parent
73ea20d29c
commit
402231eb3d
@ -60,12 +60,12 @@ namespace ams::hactool {
|
||||
template<typename T>
|
||||
struct ApplicationContentTreeEntryCompare {
|
||||
static ALWAYS_INLINE int Compare(const ApplicationContentTreeEntry<T> &a, const ApplicationContentTreeEntry<T> &b) {
|
||||
const auto a_i = a.GetId();
|
||||
const auto a_i = a.GetId().value;
|
||||
const auto a_v = a.GetVersion();
|
||||
const auto a_o = a.GetIdOffset();
|
||||
const auto a_t = a.GetType();
|
||||
const auto a_m = a.GetMetaType();
|
||||
const auto b_i = b.GetId();
|
||||
const auto b_i = b.GetId().value;
|
||||
const auto b_v = b.GetVersion();
|
||||
const auto b_o = b.GetIdOffset();
|
||||
const auto b_t = b.GetType();
|
||||
|
Loading…
Reference in New Issue
Block a user