mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-09 23:59:27 +01:00
Minor comment fix in Matrix.cpp
Fix comment to say (NxM times MxP).
This commit is contained in:
parent
aa6db1e029
commit
834a59d89b
@ -10,7 +10,7 @@
|
||||
|
||||
namespace
|
||||
{
|
||||
// Multiply a NxM matrix by a NxP matrix.
|
||||
// Multiply a NxM matrix by a MxP matrix.
|
||||
template <int N, int M, int P, typename T>
|
||||
auto MatrixMultiply(const std::array<T, N * M>& a, const std::array<T, M * P>& b)
|
||||
-> std::array<T, N * P>
|
||||
|
Loading…
x
Reference in New Issue
Block a user