diff --git a/src/xenia/cpu/backend/x64/x64_sequence.inl b/src/xenia/cpu/backend/x64/x64_sequence.inl index b155b8dae..f14a84831 100644 --- a/src/xenia/cpu/backend/x64/x64_sequence.inl +++ b/src/xenia/cpu/backend/x64/x64_sequence.inl @@ -545,12 +545,7 @@ template struct SingleSequence : public Sequence, T> { typedef Sequence, T> BASE; typedef T EmitArgType; -// TODO(benvanik): find a way to do this cross-compiler. -#if XE_COMPILER_MSVC - static uint32_t head_key() { return T::key; } -#else static constexpr uint32_t head_key() { return T::key; } -#endif // XE_COMPILER_MSVC static void Emit(X64Emitter& e, const typename BASE::EmitArgs& _) { SEQ::Emit(e, _.i1); }