Merge pull request #47 from archshift/stdstring
Bootmanager: changed `filename` to std::string
This commit is contained in:
commit
d1c2b76ad1
|
@ -6,7 +6,6 @@
|
|||
|
||||
#include "video_core/video_core.h"
|
||||
|
||||
#include "citra/citra.h"
|
||||
#include "citra/emu_window/emu_window_glfw.h"
|
||||
|
||||
static void OnKeyEvent(GLFWwindow* win, int key, int action) {
|
||||
|
|
|
@ -17,13 +17,15 @@
|
|||
#define APP_TITLE APP_NAME " " APP_VERSION
|
||||
#define COPYRIGHT "Copyright (C) 2013-2014 Citra Team"
|
||||
|
||||
EmuThread::EmuThread(GRenderWindow* render_window) : exec_cpu_step(false), cpu_running(false), render_window(render_window)
|
||||
EmuThread::EmuThread(GRenderWindow* render_window) :
|
||||
exec_cpu_step(false), cpu_running(false),
|
||||
render_window(render_window), filename("")
|
||||
{
|
||||
}
|
||||
|
||||
void EmuThread::SetFilename(const char* filename)
|
||||
void EmuThread::SetFilename(std::string filename)
|
||||
{
|
||||
strcpy(this->filename, filename);
|
||||
this->filename = filename;
|
||||
}
|
||||
|
||||
void EmuThread::run()
|
||||
|
|
|
@ -17,7 +17,7 @@ public:
|
|||
* @param filename
|
||||
* @warning Only call when not running!
|
||||
*/
|
||||
void SetFilename(const char* filename);
|
||||
void SetFilename(std::string filename);
|
||||
|
||||
/**
|
||||
* Start emulation (on new thread)
|
||||
|
@ -62,7 +62,7 @@ private:
|
|||
|
||||
EmuThread(GRenderWindow* render_window);
|
||||
|
||||
char filename[MAX_PATH];
|
||||
std::string filename;
|
||||
|
||||
bool exec_cpu_step;
|
||||
bool cpu_running;
|
||||
|
|
|
@ -123,7 +123,7 @@ GMainWindow::~GMainWindow()
|
|||
delete render_window;
|
||||
}
|
||||
|
||||
void GMainWindow::BootGame(const char* filename)
|
||||
void GMainWindow::BootGame(std::string filename)
|
||||
{
|
||||
NOTICE_LOG(MASTER_LOG, "citra starting...\n");
|
||||
|
||||
|
@ -134,8 +134,7 @@ void GMainWindow::BootGame(const char* filename)
|
|||
}
|
||||
|
||||
// Load a game or die...
|
||||
std::string boot_filename = filename;
|
||||
if (Loader::ResultStatus::Success != Loader::LoadFile(boot_filename)) {
|
||||
if (Loader::ResultStatus::Success != Loader::LoadFile(filename)) {
|
||||
ERROR_LOG(BOOT, "Failed to load ROM!");
|
||||
}
|
||||
|
||||
|
|
|
@ -30,7 +30,7 @@ public:
|
|||
~GMainWindow();
|
||||
|
||||
private:
|
||||
void BootGame(const char* filename);
|
||||
void BootGame(std::string filename);
|
||||
|
||||
void closeEvent(QCloseEvent* event);
|
||||
|
||||
|
|
Reference in New Issue