From 6595e49a3156685fc5be1d2fe5a8691932a36848 Mon Sep 17 00:00:00 2001 From: MerryMage Date: Sat, 25 Aug 2018 22:55:26 +0100 Subject: [PATCH] A32/types: CondToString: Add nv --- src/frontend/A32/types.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/frontend/A32/types.cpp b/src/frontend/A32/types.cpp index 5b43eeea..3b2c1d70 100644 --- a/src/frontend/A32/types.cpp +++ b/src/frontend/A32/types.cpp @@ -13,8 +13,8 @@ namespace Dynarmic::A32 { const char* CondToString(Cond cond, bool explicit_al) { - constexpr std::array cond_strs = { - "eq", "ne", "cs", "cc", "mi", "pl", "vs", "vc", "hi", "ls", "ge", "lt", "gt", "le", "al" + constexpr std::array cond_strs = { + "eq", "ne", "cs", "cc", "mi", "pl", "vs", "vc", "hi", "ls", "ge", "lt", "gt", "le", "al", "nv", }; return (!explicit_al && cond == Cond::AL) ? "" : cond_strs.at(static_cast(cond)); }