mirror of
https://github.com/PCSX2/pcsx2.git
synced 2026-07-11 01:34:17 +02:00
Misc: Correct Hz symbol case
This commit is contained in:
+1
-1
@@ -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
@@ -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"
|
||||||
|
|||||||
@@ -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)
|
||||||
|
|||||||
@@ -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
@@ -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
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user