Properly format/use variadic macros

This commit is contained in:
GravisZro
2024-05-24 11:46:07 -04:00
parent 8485cb0c4d
commit 9cf9781369
292 changed files with 3784 additions and 3725 deletions

View File

@@ -65,7 +65,7 @@ void UIObject::Move(int x, int y, int w, int h) {
m_Y = y;
m_W = w;
m_H = h;
mprintf((0, "new [%d,%d]\n", m_X, m_Y));
mprintf(0, "new [%d,%d]\n", m_X, m_Y);
}
//@@