mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-07-25 08:14:45 +02:00
Build: Fix some format truncation warnings.
Generally all should be safe already, but better to be sure.
This commit is contained in:
@@ -809,7 +809,7 @@ void TouchTestScreen::render() {
|
||||
|
||||
ui_context->Begin();
|
||||
|
||||
char buffer[2048];
|
||||
char buffer[4096];
|
||||
for (int i = 0; i < MAX_TOUCH_POINTS; i++) {
|
||||
if (touches_[i].id != -1) {
|
||||
ui_context->Draw()->Circle(touches_[i].x, touches_[i].y, 100.0, 3.0, 80, 0.0f, 0xFFFFFFFF, 1.0);
|
||||
|
||||
Reference in New Issue
Block a user