EmuThread: Remove unused filename attribute.
This commit is contained in:
parent
762c1a9ff5
commit
d5665fea89
3 changed files with 2 additions and 18 deletions
|
@ -28,15 +28,9 @@
|
|||
#define COPYRIGHT "Copyright (C) 2013-2014 Citra Team"
|
||||
|
||||
EmuThread::EmuThread(GRenderWindow* render_window) :
|
||||
filename(""), exec_cpu_step(false), cpu_running(false),
|
||||
stop_run(false), render_window(render_window)
|
||||
{
|
||||
connect(this, SIGNAL(started()), render_window, SLOT(moveContext()));
|
||||
}
|
||||
exec_cpu_step(false), cpu_running(false), stop_run(false), render_window(render_window) {
|
||||
|
||||
void EmuThread::SetFilename(std::string filename)
|
||||
{
|
||||
this->filename = filename;
|
||||
connect(this, SIGNAL(started()), render_window, SLOT(moveContext()));
|
||||
}
|
||||
|
||||
void EmuThread::run()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue