Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Suyu
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
many-archive
Suyu
Commits
3dd26887
There was an error fetching the commit references. Please try again later.
Commit
3dd26887
authored
9 years ago
by
bunnei
Browse files
Options
Downloads
Patches
Plain Diff
Qt: Fix loading a new game without stopping emulation.
parent
5a855bdb
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/citra_qt/main.cpp
+24
-15
24 additions, 15 deletions
src/citra_qt/main.cpp
src/citra_qt/main.h
+1
-0
1 addition, 0 deletions
src/citra_qt/main.h
with
25 additions
and
15 deletions
src/citra_qt/main.cpp
+
24
−
15
View file @
3dd26887
...
@@ -199,6 +199,10 @@ void GMainWindow::OnDisplayTitleBars(bool show)
...
@@ -199,6 +199,10 @@ void GMainWindow::OnDisplayTitleBars(bool show)
void
GMainWindow
::
BootGame
(
std
::
string
filename
)
{
void
GMainWindow
::
BootGame
(
std
::
string
filename
)
{
LOG_INFO
(
Frontend
,
"Citra starting...
\n
"
);
LOG_INFO
(
Frontend
,
"Citra starting...
\n
"
);
// Shutdown previous session if the emu thread is still active...
if
(
emu_thread
!=
nullptr
)
ShutdownGame
();
System
::
Init
(
render_window
);
System
::
Init
(
render_window
);
// Load a game or die...
// Load a game or die...
...
@@ -217,6 +221,25 @@ void GMainWindow::BootGame(std::string filename) {
...
@@ -217,6 +221,25 @@ void GMainWindow::BootGame(std::string filename) {
OnStartGame
();
OnStartGame
();
}
}
void
GMainWindow
::
ShutdownGame
()
{
emu_thread
->
SetCpuRunning
(
false
);
emu_thread
->
ShutdownCpu
();
emu_thread
->
WaitForCpuShutdown
();
emu_thread
->
Stop
();
delete
emu_thread
;
emu_thread
=
nullptr
;
System
::
Shutdown
();
ui
.
action_Start
->
setEnabled
(
true
);
ui
.
action_Pause
->
setEnabled
(
false
);
ui
.
action_Stop
->
setEnabled
(
false
);
render_window
->
hide
();
}
void
GMainWindow
::
OnMenuLoadFile
()
void
GMainWindow
::
OnMenuLoadFile
()
{
{
QString
filename
=
QFileDialog
::
getOpenFileName
(
this
,
tr
(
"Load File"
),
QString
(),
tr
(
"3DS executable (*.3ds *.3dsx *.elf *.axf *.bin *.cci *.cxi)"
));
QString
filename
=
QFileDialog
::
getOpenFileName
(
this
,
tr
(
"Load File"
),
QString
(),
tr
(
"3DS executable (*.3ds *.3dsx *.elf *.axf *.bin *.cci *.cxi)"
));
...
@@ -249,21 +272,7 @@ void GMainWindow::OnPauseGame()
...
@@ -249,21 +272,7 @@ void GMainWindow::OnPauseGame()
}
}
void
GMainWindow
::
OnStopGame
()
{
void
GMainWindow
::
OnStopGame
()
{
emu_thread
->
SetCpuRunning
(
false
);
ShutdownGame
();
emu_thread
->
ShutdownCpu
();
emu_thread
->
WaitForCpuShutdown
();
emu_thread
->
Stop
();
delete
emu_thread
;
System
::
Shutdown
();
ui
.
action_Start
->
setEnabled
(
true
);
ui
.
action_Pause
->
setEnabled
(
false
);
ui
.
action_Stop
->
setEnabled
(
false
);
render_window
->
hide
();
}
}
void
GMainWindow
::
OnOpenHotkeysDialog
()
void
GMainWindow
::
OnOpenHotkeysDialog
()
...
...
This diff is collapsed.
Click to expand it.
src/citra_qt/main.h
+
1
−
0
View file @
3dd26887
...
@@ -41,6 +41,7 @@ public:
...
@@ -41,6 +41,7 @@ public:
private
:
private
:
void
BootGame
(
std
::
string
filename
);
void
BootGame
(
std
::
string
filename
);
void
ShutdownGame
();
void
closeEvent
(
QCloseEvent
*
event
)
override
;
void
closeEvent
(
QCloseEvent
*
event
)
override
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment