Browse Source

Update dpf, fix warnings

Signed-off-by: falkTX <falktx@falktx.com>
master
falkTX 1 month ago
parent
commit
110bf9fc1c
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
3 changed files with 4 additions and 4 deletions
  1. +1
    -1
      dpf
  2. +2
    -2
      plugins/Nekobi/DistrhoUINekobi.cpp
  3. +1
    -1
      plugins/Nekobi/nekobee-src/nekobee_voice.c

+ 1
- 1
dpf

@@ -1 +1 @@
Subproject commit e045225a6c08d437d0bcf8400da9b0783291b4a9
Subproject commit d4c2ce6e3da43ae328876146b60d2d2cca5caa44

+ 2
- 2
plugins/Nekobi/DistrhoUINekobi.cpp View File

@@ -1,6 +1,6 @@
/*
* DISTRHO Nekobi Plugin, based on Nekobee by Sean Bolton and others.
* Copyright (C) 2013-2022 Filipe Coelho <falktx@falktx.com>
* Copyright (C) 2013-2026 Filipe Coelho <falktx@falktx.com>
*
* 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)
{


+ 1
- 1
plugins/Nekobi/nekobee-src/nekobee_voice.c View File

@@ -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;
}


Loading…
Cancel
Save