Просмотр исходного кода

pl_u: Remove excess static qualifier

Zach Hilman 6 лет назад
Родитель
Сommit
b3a8a094a5
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      src/core/hle/service/ns/pl_u.cpp

+ 1 - 1
src/core/hle/service/ns/pl_u.cpp

@@ -95,7 +95,7 @@ static void DecryptSharedFont(const std::vector<u32>& input, Kernel::PhysicalMem
     offset += transformed_font.size() * sizeof(u32);
 }
 
-static void EncryptSharedFont(const std::vector<u8>& input, Kernel::PhysicalMemory& output) {
+void EncryptSharedFont(const std::vector<u8>& input, Kernel::PhysicalMemory& output) {
     ASSERT_MSG(input.size() * sizeof(u32) < SHARED_FONT_MEM_SIZE, "Shared fonts exceeds 17mb!");
 
     const auto key = Common::swap32(EXPECTED_RESULT ^ EXPECTED_MAGIC);