فهرست منبع

Merge pull request #1010 from lioncash/ref

citra-qt: Pass string by const reference
bunnei 11 سال پیش
والد
کامیت
aee575b24d
2فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  1. 1 1
      src/citra_qt/main.cpp
  2. 1 1
      src/citra_qt/main.h

+ 1 - 1
src/citra_qt/main.cpp

@@ -207,7 +207,7 @@ void GMainWindow::OnDisplayTitleBars(bool show)
     }
 }
 
-void GMainWindow::BootGame(std::string filename) {
+void GMainWindow::BootGame(const std::string& filename) {
     LOG_INFO(Frontend, "Citra starting...\n");
 
     // Initialize the core emulation

+ 1 - 1
src/citra_qt/main.h

@@ -55,7 +55,7 @@ signals:
     void EmulationStopping();
 
 private:
-    void BootGame(std::string filename);
+    void BootGame(const std::string& filename);
     void ShutdownGame();
 
     void closeEvent(QCloseEvent* event) override;