RISCOS: Add Drag and Drop support
This commit is contained in:
parent
9c29b03c43
commit
fb0b63ba66
6 changed files with 118 additions and 0 deletions
|
@ -26,6 +26,7 @@
|
|||
|
||||
#include "backends/platform/sdl/riscos/riscos.h"
|
||||
#include "backends/saves/default/default-saves.h"
|
||||
#include "backends/events/riscossdl/riscossdl-events.h"
|
||||
#include "backends/fs/riscos/riscos-fs-factory.h"
|
||||
#include "backends/fs/riscos/riscos-fs.h"
|
||||
|
||||
|
@ -51,6 +52,10 @@ void OSystem_RISCOS::init() {
|
|||
void OSystem_RISCOS::initBackend() {
|
||||
ConfMan.registerDefault("enable_reporter", false);
|
||||
|
||||
// Create the events manager
|
||||
if (_eventSource == 0)
|
||||
_eventSource = new RISCOSSdlEventSource();
|
||||
|
||||
// Create the savefile manager
|
||||
if (_savefileManager == 0) {
|
||||
Common::String savePath = "/<Choices$Write>/ScummVM/Saves";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue