added missing padding
This commit is contained in:
parent
8b4ed1530f
commit
9b929d40f0
@ -197,12 +197,14 @@ pub struct CreateRoom {
|
|||||||
|
|
||||||
#[pso_packet(0x01)]
|
#[pso_packet(0x01)]
|
||||||
pub struct SmallDialog {
|
pub struct SmallDialog {
|
||||||
|
padding: [u32; 0x02],
|
||||||
msg: String,
|
msg: String,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl SmallDialog {
|
impl SmallDialog {
|
||||||
pub fn new(msg: String) -> SmallDialog {
|
pub fn new(msg: String) -> SmallDialog {
|
||||||
SmallDialog {
|
SmallDialog {
|
||||||
|
padding: [0; 0x02],
|
||||||
msg: msg,
|
msg: msg,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user