From 9a3d4f048985b0d9e77fa07fe305913b8a13fda3 Mon Sep 17 00:00:00 2001 From: Zephyron Date: Tue, 28 Jan 2025 17:33:57 +1000 Subject: ui: Update repository URLs to git.citron-emu.org Updates all GitHub repository URLs to point to the new self-hosted Git instance at git.citron-emu.org. This includes: - Links in the About dialog UI and translations - Android app string resources - Documentation/wiki links - Source code comments The website URL (citron-emu.org) and support links remain unchanged. --- src/common/threadsafe_queue.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/common/threadsafe_queue.h') diff --git a/src/common/threadsafe_queue.h b/src/common/threadsafe_queue.h index 3893cd713..8224d96e9 100644 --- a/src/common/threadsafe_queue.h +++ b/src/common/threadsafe_queue.h @@ -52,7 +52,7 @@ public: // cv_mutex must be held or else there will be a missed wakeup if the other thread is in the // line before cv.wait // TODO(bunnei): This can be replaced with C++20 waitable atomics when properly supported. - // See discussion on https://github.com/citron-emu/citron/pull/3173 for details. + // See discussion on https://git.citron-emu.org/Citron/Citron/pull/3173 for details. std::scoped_lock lock{cv_mutex}; cv.notify_one(); } -- cgit v1.2.3