mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-08-24 23:46:41 +00:00
Fix some copy-pasted error messages
This commit is contained in:
@@ -3155,7 +3155,7 @@ ReplayStatus D3D12_CreateReplayDevice(RDCFile *rdc, IReplayDriver **driver)
|
||||
|
||||
if(!D3D12InitParams::IsSupportedVersion(ver))
|
||||
{
|
||||
RDCERR("Incompatible D3D11 serialise version %llu", ver);
|
||||
RDCERR("Incompatible D3D12 serialise version %llu", ver);
|
||||
return ReplayStatus::APIIncompatibleVersion;
|
||||
}
|
||||
|
||||
|
||||
@@ -72,7 +72,7 @@ ReplayStatus GLES_CreateReplayDevice(RDCFile *rdc, IReplayDriver **driver)
|
||||
|
||||
if(!GLInitParams::IsSupportedVersion(ver))
|
||||
{
|
||||
RDCERR("Incompatible D3D11 serialise version %llu", ver);
|
||||
RDCERR("Incompatible OpenGL serialise version %llu", ver);
|
||||
return ReplayStatus::APIIncompatibleVersion;
|
||||
}
|
||||
|
||||
|
||||
@@ -107,7 +107,7 @@ ReplayStatus GL_CreateReplayDevice(RDCFile *rdc, IReplayDriver **driver)
|
||||
|
||||
if(!GLInitParams::IsSupportedVersion(ver))
|
||||
{
|
||||
RDCERR("Incompatible D3D11 serialise version %llu", ver);
|
||||
RDCERR("Incompatible OpenGL serialise version %llu", ver);
|
||||
return ReplayStatus::APIIncompatibleVersion;
|
||||
}
|
||||
|
||||
|
||||
@@ -69,7 +69,7 @@ ReplayStatus GL_CreateReplayDevice(RDCFile *rdc, IReplayDriver **driver)
|
||||
|
||||
if(!GLInitParams::IsSupportedVersion(ver))
|
||||
{
|
||||
RDCERR("Incompatible D3D11 serialise version %llu", ver);
|
||||
RDCERR("Incompatible OpenGL serialise version %llu", ver);
|
||||
return ReplayStatus::APIIncompatibleVersion;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user