summaryrefslogtreecommitdiff
path: root/src/common/threadsafe_queue.h
diff options
context:
space:
mode:
authorZephyron <zephyron@citron-emu.org>2025-01-28 17:33:57 +1000
committerZephyron <zephyron@citron-emu.org>2025-01-28 17:33:57 +1000
commit9a3d4f048985b0d9e77fa07fe305913b8a13fda3 (patch)
treeb97b78417fb50441d14c08acbcce79a6dcd375da /src/common/threadsafe_queue.h
parent8c630a8beaff2b1cff36f9dd1178db2995af160d (diff)
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.
Diffstat (limited to 'src/common/threadsafe_queue.h')
-rw-r--r--src/common/threadsafe_queue.h2
1 files changed, 1 insertions, 1 deletions
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();
}