Misc: Correct Hz symbol case

This commit is contained in:
Dreadmoth
2026-02-15 04:26:15 +10:00
committed by Ty
parent e1fd632ba3
commit e1291d5b7c
5 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -180,7 +180,7 @@ namespace QtUtils
} }
wi.surface_refresh_rate = surface_refresh_rate.value(); wi.surface_refresh_rate = surface_refresh_rate.value();
INFO_LOG("Surface refresh rate: {} hz", wi.surface_refresh_rate); INFO_LOG("Surface refresh rate: {} Hz", wi.surface_refresh_rate);
return wi; return wi;
} }
+2 -2
View File
@@ -6,8 +6,8 @@
#include "common/Pcsx2Defs.h" #include "common/Pcsx2Defs.h"
static const u32 BIAS = 2; // Bus is half of the actual ps2 speed static const u32 BIAS = 2; // Bus is half of the actual ps2 speed
static const u32 PS2CLK = 294912000; //hz /* 294.912 mhz */ static const u32 PS2CLK = 294912000; //Hz /* 294.912 MHz */
extern u32 PSXCLK; /* 36.864 Mhz */ extern u32 PSXCLK; /* 36.864 MHz */
#include "Memory.h" #include "Memory.h"
+1 -1
View File
@@ -315,7 +315,7 @@ bool GSDevice::GetRequestedExclusiveFullscreenMode(u32* width, u32* height, floa
std::string GSDevice::GetFullscreenModeString(u32 width, u32 height, float refresh_rate) std::string GSDevice::GetFullscreenModeString(u32 width, u32 height, float refresh_rate)
{ {
return StringUtil::StdStringFromFormat("%u x %u @ %f hz", width, height, refresh_rate); return StringUtil::StdStringFromFormat("%u x %u @ %f Hz", width, height, refresh_rate);
} }
void GSDevice::GenerateExpansionIndexBuffer(void* buffer) void GSDevice::GenerateExpansionIndexBuffer(void* buffer)
+1 -1
View File
@@ -1464,7 +1464,7 @@ public:
/// Returns a string representing the specified API. /// Returns a string representing the specified API.
static const char* RenderAPIToString(RenderAPI api); static const char* RenderAPIToString(RenderAPI api);
/// Parses the configured fullscreen mode into its components (width * height @ refresh hz) /// Parses the configured fullscreen mode into its components (width * height @ refresh Hz)
static bool GetRequestedExclusiveFullscreenMode(u32* width, u32* height, float* refresh_rate); static bool GetRequestedExclusiveFullscreenMode(u32* width, u32* height, float* refresh_rate);
/// Converts a fullscreen mode to a string. /// Converts a fullscreen mode to a string.
+1 -1
View File
@@ -20,7 +20,7 @@
#include <stdexcept> #include <stdexcept>
#include <string> #include <string>
#define PSXCLK 36864000 /* 36.864 Mhz */ #define PSXCLK 36864000 /* 36.864 MHz */
namespace USB namespace USB
{ {