diff --git a/dpf b/dpf index e045225..d4c2ce6 160000 --- a/dpf +++ b/dpf @@ -1 +1 @@ -Subproject commit e045225a6c08d437d0bcf8400da9b0783291b4a9 +Subproject commit d4c2ce6e3da43ae328876146b60d2d2cca5caa44 diff --git a/plugins/Nekobi/DistrhoUINekobi.cpp b/plugins/Nekobi/DistrhoUINekobi.cpp index d308217..381c251 100644 --- a/plugins/Nekobi/DistrhoUINekobi.cpp +++ b/plugins/Nekobi/DistrhoUINekobi.cpp @@ -1,6 +1,6 @@ /* * DISTRHO Nekobi Plugin, based on Nekobee by Sean Bolton and others. - * Copyright (C) 2013-2022 Filipe Coelho + * Copyright (C) 2013-2026 Filipe Coelho * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as @@ -25,7 +25,7 @@ namespace Art = DistrhoArtworkNekobi; // ----------------------------------------------------------------------- DistrhoUINekobi::DistrhoUINekobi() - : UI(Art::backgroundWidth, Art::backgroundHeight, true), + : UI(Art::backgroundWidth, Art::backgroundHeight, kInternalScalingMatchingHost), fImgBackground(Art::backgroundData, Art::backgroundWidth, Art::backgroundHeight, kImageFormatBGR), fAboutWindow(this) { diff --git a/plugins/Nekobi/nekobee-src/nekobee_voice.c b/plugins/Nekobi/nekobee-src/nekobee_voice.c index 3266546..368c6ec 100644 --- a/plugins/Nekobi/nekobee-src/nekobee_voice.c +++ b/plugins/Nekobi/nekobee-src/nekobee_voice.c @@ -42,7 +42,7 @@ nekobee_voice_new() { nekobee_voice_t *voice; - voice = (nekobee_voice_t *)calloc(sizeof(nekobee_voice_t), 1); + voice = (nekobee_voice_t *)calloc(1, sizeof(nekobee_voice_t)); if (voice) { voice->status = XSYNTH_VOICE_OFF; }