mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-02 16:35:06 +01:00
Merge pull request #1010 from lioncash/ref
citra-qt: Pass string by const reference
This commit is contained in:
commit
aee575b24d
@ -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
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user