mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-18 16:03:05 +00:00
Updates to the recent OSystem API changes
svn-id: r33719
This commit is contained in:
parent
71f4a15e4e
commit
f098b2817f
@ -89,8 +89,12 @@ OSystem_Wii::~OSystem_Wii() {
|
||||
|
||||
void OSystem_Wii::initBackend() {
|
||||
_startup_time = gettime();
|
||||
|
||||
char buf[MAXPATHLEN];
|
||||
if (!getcwd(buf, MAXPATHLEN))
|
||||
strcpy(buf, "/");
|
||||
|
||||
_savefile = new DefaultSaveFileManager();
|
||||
_savefile = new DefaultSaveFileManager(buf);
|
||||
_mixer = new Audio::MixerImpl(this);
|
||||
_timer = new DefaultTimerManager();
|
||||
|
||||
|
@ -22,9 +22,9 @@
|
||||
#ifndef _WII_OSYSTEM_H_
|
||||
#define _WII_OSYSTEM_H_
|
||||
|
||||
#include "common/system.h"
|
||||
#include "base/main.h"
|
||||
|
||||
#include "common/system.h"
|
||||
#include "common/fs.h"
|
||||
#include "common/rect.h"
|
||||
#include "common/events.h"
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user