From 7c0347011e222b3339ae3aca652a4b01a8da5aea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dominik=20Madar=C3=A1sz?= Date: Fri, 14 May 2021 06:10:38 +0200 Subject: [PATCH] fix typo --- code/game/source/debug_ui.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/source/debug_ui.c b/code/game/source/debug_ui.c index caff384..5c3782c 100644 --- a/code/game/source/debug_ui.c +++ b/code/game/source/debug_ui.c @@ -88,7 +88,7 @@ static debug_item items[] = { .list = { .items = (debug_item[]) { { .kind = DITEM_RAW, .val = PROF_MAIN_LOOP, .proc = DrawProfilerDelta }, - { .kind = DITEM_TEXT, .name = "unmesasured time", .proc = DrawUnmeasuredTime }, + { .kind = DITEM_TEXT, .name = "unmeasured time", .proc = DrawUnmeasuredTime }, { .kind = DITEM_RAW, .val = PROF_WORLD_WRITE, .proc = DrawProfilerDelta }, { .kind = DITEM_RAW, .val = PROF_RENDER, .proc = DrawProfilerDelta }, { .kind = DITEM_RAW, .val = PROF_UPDATE_SYSTEMS, .proc = DrawProfilerDelta },