Browse Source

fuck msvc

pull/3640/head
lizzie 1 week ago
parent
commit
26ec508d5f
  1. 2
      src/video_core/engines/maxwell_3d.h

2
src/video_core/engines/maxwell_3d.h

@ -2258,7 +2258,7 @@ public:
/// Returns whether the vertex array specified by index is supposed to be
/// accessed per instance or not.
bool IsInstancingEnabled(std::size_t index) const {
return is_instanced[index];
return bool(is_instanced[index]); //FUCK YOU MSVC
}
};

Loading…
Cancel
Save