| 402 | } |
| 403 | |
| 404 | void diablo_init_screen() |
| 405 | { |
| 406 | int i; |
| 407 | |
| 408 | MouseX = SCREEN_WIDTH / 2; |
| 409 | MouseY = SCREEN_HEIGHT / 2; |
| 410 | if (!sgbControllerActive) |
| 411 | SetCursorPos(MouseX, MouseY); |
| 412 | ScrollInfo._sdx = 0; |
| 413 | ScrollInfo._sdy = 0; |
| 414 | ScrollInfo._sxoff = 0; |
| 415 | ScrollInfo._syoff = 0; |
| 416 | ScrollInfo._sdir = SDIR_NONE; |
| 417 | |
| 418 | ClrDiabloMsg(); |
| 419 | } |
| 420 | |
| 421 | BOOL PressEscKey() |
| 422 | { |
no test coverage detected