mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-04-09 17:00:52 -04:00
Assert: Remove unused parameter from DEBUG_ASSERT
This brings the macro in line with the regular ASSERT macro, which only has one macro parameter.
This commit is contained in:
@@ -62,7 +62,7 @@ public:
|
||||
|
||||
int BeginAppendData(void** write_ptr, unsigned int size, unsigned int vertex_size)
|
||||
{
|
||||
DEBUG_ASSERT(VIDEO, size < max_size);
|
||||
DEBUG_ASSERT(size < max_size);
|
||||
|
||||
D3D11_MAPPED_SUBRESOURCE map;
|
||||
unsigned int aligned_offset = Common::AlignUp(offset, vertex_size);
|
||||
|
||||
Reference in New Issue
Block a user