| 134 | } |
| 135 | |
| 136 | void zEntButton_Load(_zEntButton* ent, xSerial* s) |
| 137 | { |
| 138 | zEntLoad(ent, s); |
| 139 | |
| 140 | int unk1 = 0, unk2 = 0; |
| 141 | |
| 142 | s->Read_b1(&unk1); |
| 143 | if (unk1 != 0) |
| 144 | { |
| 145 | ent->state = 1; |
| 146 | } |
| 147 | |
| 148 | s->Read_b1(&unk2); |
| 149 | if (unk2 != 0) |
| 150 | { |
| 151 | ent->state = 1; |
| 152 | } |
| 153 | } |
| 154 | |
| 155 | void zEntButton_Reset(_zEntButton* ent, xScene* sc) |
| 156 | { |
no test coverage detected