diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/video_core/engines/maxwell_3d.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/engines/maxwell_3d.cpp b/src/video_core/engines/maxwell_3d.cpp index d7b586db9..ca7ad20ad 100644 --- a/src/video_core/engines/maxwell_3d.cpp +++ b/src/video_core/engines/maxwell_3d.cpp | |||
| @@ -442,7 +442,7 @@ Texture::TICEntry Maxwell3D::GetTICEntry(u32 tic_index) const { | |||
| 442 | const auto a_type = tic_entry.a_type.Value(); | 442 | const auto a_type = tic_entry.a_type.Value(); |
| 443 | 443 | ||
| 444 | // TODO(Subv): Different data types for separate components are not supported | 444 | // TODO(Subv): Different data types for separate components are not supported |
| 445 | ASSERT(r_type == g_type && r_type == b_type && r_type == a_type); | 445 | DEBUG_ASSERT(r_type == g_type && r_type == b_type && r_type == a_type); |
| 446 | 446 | ||
| 447 | return tic_entry; | 447 | return tic_entry; |
| 448 | } | 448 | } |