rsx: Typo fix

This commit is contained in:
Eladash 2019-07-09 22:01:48 +03:00 committed by kd-11
parent 2548057ea0
commit 78e447e28c
1 changed files with 1 additions and 1 deletions

View File

@ -3275,7 +3275,7 @@ struct registers_decoder<NV4097_SET_ZSTENCIL_CLEAR_VALUE>
u32 value;
u32 clear_z16() const { return bf_decoder<0, 16, u32>(value); }
u32 clear_z24() const { return bf_decoder<0, 24>(value); }
u32 clear_z24() const { return bf_decoder<8, 24>(value); }
public:
decoded_type(u32 value) : value(value) {}