mirror of
https://github.com/AsahiLinux/m1n1
synced 2024-11-26 08:20:18 +00:00
m1n1.fw.agx.initdata: Fix number of buffer managers
Signed-off-by: Asahi Lina <lina@asahilina.net>
This commit is contained in:
parent
35b33fdd28
commit
202781f4f1
1 changed files with 2 additions and 2 deletions
|
@ -1229,10 +1229,10 @@ class AGXHWDataB(ConstructClass):
|
||||||
self.unk_c3c = 0x19
|
self.unk_c3c = 0x19
|
||||||
|
|
||||||
class InitData_BufferMgrCtl(ConstructValueClass):
|
class InitData_BufferMgrCtl(ConstructValueClass):
|
||||||
subcon = Array(256, Bytes(0x10))
|
subcon = Array(126, Bytes(0x10))
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
self.value = [bytes(0x10)] * 256
|
self.value = [bytes(0x10)] * 126
|
||||||
|
|
||||||
class InitData_GPUQueueStatsTA(ConstructClass):
|
class InitData_GPUQueueStatsTA(ConstructClass):
|
||||||
subcon = Struct(
|
subcon = Struct(
|
||||||
|
|
Loading…
Reference in a new issue