summaryrefslogtreecommitdiffstats
path: root/src/yuzu
diff options
context:
space:
mode:
authorN00byKing <N00byKing@users.noreply.github.com>2018-03-26 21:27:10 +0200
committerN00byKing <N00byKing@hotmail.de>2018-03-27 16:32:41 +0200
commit16b14aa7e32abd34ea952b065ff89fe70d38c7b4 (patch)
tree06930dd6f7aeaeb5ea1ac8283ee0aa7c63c99207 /src/yuzu
parentMerge pull request #280 from bunnei/misc-service-fixes (diff)
downloadyuzu-16b14aa7e32abd34ea952b065ff89fe70d38c7b4.tar
yuzu-16b14aa7e32abd34ea952b065ff89fe70d38c7b4.tar.gz
yuzu-16b14aa7e32abd34ea952b065ff89fe70d38c7b4.tar.bz2
yuzu-16b14aa7e32abd34ea952b065ff89fe70d38c7b4.tar.lz
yuzu-16b14aa7e32abd34ea952b065ff89fe70d38c7b4.tar.xz
yuzu-16b14aa7e32abd34ea952b065ff89fe70d38c7b4.tar.zst
yuzu-16b14aa7e32abd34ea952b065ff89fe70d38c7b4.zip
Diffstat (limited to 'src/yuzu')
-rw-r--r--src/yuzu/main.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/yuzu/main.h b/src/yuzu/main.h
index 2471caf83..592ab7d9e 100644
--- a/src/yuzu/main.h
+++ b/src/yuzu/main.h
@@ -2,8 +2,7 @@
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
-#ifndef _CITRA_QT_MAIN_HXX_
-#define _CITRA_QT_MAIN_HXX_
+#pragma once
#include <memory>
#include <QMainWindow>
@@ -153,7 +152,7 @@ private:
std::unique_ptr<Config> config;
- // Whether emulation is currently running in Citra.
+ // Whether emulation is currently running in yuzu.
bool emulation_running = false;
std::unique_ptr<EmuThread> emu_thread;
@@ -172,5 +171,3 @@ protected:
void dragEnterEvent(QDragEnterEvent* event) override;
void dragMoveEvent(QDragMoveEvent* event) override;
};
-
-#endif // _CITRA_QT_MAIN_HXX_