diff options
| author | 2015-07-29 12:16:56 -0400 | |
|---|---|---|
| committer | 2015-07-29 12:16:56 -0400 | |
| commit | aee575b24d9c0b07741d3e51c096994a7c85b828 (patch) | |
| tree | a3ee60bcacd7264f4cdf5b3aa8241d04f7f0ecd0 /src/citra_qt/main.cpp | |
| parent | Merge pull request #1009 from lioncash/table (diff) | |
| parent | citra-qt: Pass string by const reference (diff) | |
| download | yuzu-aee575b24d9c0b07741d3e51c096994a7c85b828.tar.gz yuzu-aee575b24d9c0b07741d3e51c096994a7c85b828.tar.xz yuzu-aee575b24d9c0b07741d3e51c096994a7c85b828.zip | |
Merge pull request #1010 from lioncash/ref
citra-qt: Pass string by const reference
Diffstat (limited to 'src/citra_qt/main.cpp')
| -rw-r--r-- | src/citra_qt/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/citra_qt/main.cpp b/src/citra_qt/main.cpp index 34831f2ec..e93e8ebb8 100644 --- a/src/citra_qt/main.cpp +++ b/src/citra_qt/main.cpp | |||
| @@ -207,7 +207,7 @@ void GMainWindow::OnDisplayTitleBars(bool show) | |||
| 207 | } | 207 | } |
| 208 | } | 208 | } |
| 209 | 209 | ||
| 210 | void GMainWindow::BootGame(std::string filename) { | 210 | void GMainWindow::BootGame(const std::string& filename) { |
| 211 | LOG_INFO(Frontend, "Citra starting...\n"); | 211 | LOG_INFO(Frontend, "Citra starting...\n"); |
| 212 | 212 | ||
| 213 | // Initialize the core emulation | 213 | // Initialize the core emulation |