mirror of
https://github.com/djhackersdev/minime.git
synced 2026-08-20 01:14:08 -05:00
Fix LoadProfileRequest field label
This commit is contained in:
@@ -9,6 +9,6 @@ export function loadProfile(buf: Buffer): LoadProfileRequest {
|
||||
return {
|
||||
type: "load_profile_req",
|
||||
aimeId: buf.readUInt32LE(0x0004) as AimeId,
|
||||
pcbId: buf.slice(0x0008, buf.indexOf("\0", 0x0008)).toString("ascii"),
|
||||
luid: buf.slice(0x0008, buf.indexOf("\0", 0x0008)).toString("ascii"),
|
||||
};
|
||||
}
|
||||
|
||||
@@ -3,5 +3,5 @@ import { AimeId } from "../model/base";
|
||||
export interface LoadProfileRequest {
|
||||
type: "load_profile_req";
|
||||
aimeId: AimeId;
|
||||
pcbId: string;
|
||||
luid: string;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user