From d7db6167d1dafe92ac931495a1a0ace30c1de814 Mon Sep 17 00:00:00 2001 From: ColleagueRiley Date: Sun, 21 Apr 2024 13:27:19 -0400 Subject: [PATCH] update GUI --- source/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/main.c b/source/main.c index 4d88deb..43770a5 100644 --- a/source/main.c +++ b/source/main.c @@ -371,7 +371,7 @@ int main (int argc, char** argv) { RSGL_button_setStyle(&rendererChoice, RSGL_STYLE_DARK | RSGL_STYLE_RADIO); RSGL_button pitchShiftButton = RSGL_initButton(); - RSGL_button_setPolygon(&pitchShiftButton, RSGL_RECT(380, 183, 60, 30), 36); + RSGL_button_setPolygon(&pitchShiftButton, RSGL_RECT(380, 188, 40, 20), 36); RSGL_button_setStyle(&pitchShiftButton, RSGL_STYLE_DARK | RSGL_STYLE_TOGGLE | RSGL_STYLE_ROUNDED); u32 texture = RSGL_createTexture(NULL, RSGL_AREA(WIDTH, HEIGHT), 4); @@ -516,7 +516,7 @@ int main (int argc, char** argv) { RSGL_drawText("CPU Buffer", RSGL_CIRCLE(290, 115, 25), RSGL_RGB(100, 100, 100)); RSGL_drawText("OpenGL Buffer", RSGL_CIRCLE(263, 143, 25), RSGL_RGB(100, 100, 100)); RSGL_drawButton(rendererChoice); - RSGL_drawText("PitchShift", RSGL_CIRCLE(263, 177, 25), RSGL_RGB(100, 100, 100)); + RSGL_drawText("Pitch Shift", RSGL_CIRCLE(266, 177, 25), RSGL_RGB(100, 100, 100)); RSGL_drawButton(pitchShiftButton); RGFW_window_setCPURender(window, 0);