Move SYSINPUT_* and TRANSITION_* to SagaEngine class
svn-id: r14555
This commit is contained in:
parent
c41b0ad99a
commit
23d5d1fb82
5 changed files with 20 additions and 21 deletions
|
@ -124,7 +124,7 @@ int Render::drawScene() {
|
|||
backbuf_surface = _backbuf_surface;
|
||||
|
||||
// Get mouse coordinates
|
||||
mouse_pt = SYSINPUT_GetMousePos();
|
||||
mouse_pt = _vm->getMousePos();
|
||||
|
||||
_vm->_scene->getBGInfo(&bg_info);
|
||||
GAME_GetDisplayInfo(&disp_info);
|
||||
|
@ -149,7 +149,7 @@ int Render::drawScene() {
|
|||
_vm->textDrawList(scene_info.text_list, backbuf_surface);
|
||||
|
||||
// Handle user input
|
||||
SYSINPUT_ProcessInput();
|
||||
_vm->processInput();
|
||||
|
||||
// Display rendering information
|
||||
if (_flags & RF_SHOW_FPS) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue