| 2333 | } |
| 2334 | |
| 2335 | S32 xSGT_SaveProcPrefsCB(void* vp, st_XSAVEGAME_DATA* xsgdata, st_XSAVEGAME_WRITECONTEXT* wctxt) |
| 2336 | { |
| 2337 | int sum = 0; |
| 2338 | sum += xSGWriteData(xsgdata, wctxt, &gSnd.stereo, 1); |
| 2339 | sum += xSGWriteData(xsgdata, wctxt, &gSnd.categoryVolFader[2], 1); |
| 2340 | sum += xSGWriteData(xsgdata, wctxt, &gSnd.categoryVolFader[0], 1); |
| 2341 | sum += xSGWriteData(xsgdata, wctxt, &globals.option_vibration, 1); |
| 2342 | return sum + 1; |
| 2343 | } |
| 2344 | |
| 2345 | S32 xSGT_LoadLoadCB(void* vp, st_XSAVEGAME_DATA* xsgdata, st_XSAVEGAME_READCONTEXT* rctxt, U32 ui, |
| 2346 | S32 i) |
nothing calls this directly
no test coverage detected